diff options
Diffstat (limited to 'Source/DataExport')
-rw-r--r-- | Source/DataExport/Exporter.cs (renamed from Source/DataExport/DataWriter.cs) | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/DataExport/DataWriter.cs b/Source/DataExport/Exporter.cs index cf18c9e..d8b8380 100644 --- a/Source/DataExport/DataWriter.cs +++ b/Source/DataExport/Exporter.cs @@ -3,17 +3,18 @@ using Microsoft.Office.Interop.Excel; using System; using System.Collections.Generic; using System.IO; +using RehauSku.Assistant; -namespace RehauSku.Assist +namespace RehauSku.DataExport { - public class DataWriter : IDisposable + public class Exporter : IDisposable { private Application xlApp; private Dictionary<string, double> SkuAmount { get; set; } private object[,] SelectedCells { get; set; } private string WorkingFileName { get; set; } - public DataWriter() + public Exporter() { this.xlApp = (Application)ExcelDnaUtil.Application; this.WorkingFileName = xlApp.ActiveWorkbook.FullName; |