diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-10 13:56:28 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-10 13:56:28 +0300 |
commit | b7c65d64e98092049fddc1b482bfc7aa97759d60 (patch) | |
tree | 4d7712d05ee341b39b56fb5ce2cc24ecc8643717 /Source/DataExport | |
parent | 5a641d83d8e8ee9c977d3867f195447cd1164bef (diff) |
Refactoring
Diffstat (limited to 'Source/DataExport')
-rw-r--r-- | Source/DataExport/Exporter.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/DataExport/Exporter.cs b/Source/DataExport/Exporter.cs index 5a691b7..cc7621e 100644 --- a/Source/DataExport/Exporter.cs +++ b/Source/DataExport/Exporter.cs @@ -76,7 +76,7 @@ namespace RehauSku.DataExport public void FillPriceList() { string exportFile = _GetExportFullPath(); - File.Copy(AddIn.priceListPath, exportFile, true); + File.Copy(AddIn.PriceListPath, exportFile, true); Workbook wb = xlApp.Workbooks.Open(exportFile); Worksheet ws = wb.ActiveSheet; @@ -94,7 +94,7 @@ namespace RehauSku.DataExport private string _GetExportFullPath() { - string fileExtension = Path.GetExtension(AddIn.priceListPath); + string fileExtension = Path.GetExtension(AddIn.PriceListPath); return Path.GetTempFileName() + fileExtension; } |