diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-08 14:45:14 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-08 14:45:14 +0300 |
commit | dc1fc8b221e9324fe0f82c4ea4a32d87d282bd25 (patch) | |
tree | fc5f6700861396f267b063be4412d1778c8f1227 /Source/DataExport | |
parent | 8a869e73fb1873b1f85203b7a4a18dc8a2325a11 (diff) |
refactoring namespaces
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; |