diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-01-13 07:52:16 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-01-13 07:52:16 +0300 |
commit | 61455943905669c72f2c62acbe3ae77aac74e019 (patch) | |
tree | 08d67f7e61c694de9c8f3392d529453774fb9032 /src/Models/TargetPriceList.cs | |
parent | 197073930656999989f4954b4308d376649262ae (diff) |
Delete extension name from Name property of Price list
Diffstat (limited to 'src/Models/TargetPriceList.cs')
-rw-r--r-- | src/Models/TargetPriceList.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Models/TargetPriceList.cs b/src/Models/TargetPriceList.cs index 4754049..163d429 100644 --- a/src/Models/TargetPriceList.cs +++ b/src/Models/TargetPriceList.cs @@ -1,5 +1,6 @@ using Microsoft.Office.Interop.Excel; using System; +using System.IO; using System.Linq; namespace RhSolutions.Models @@ -17,7 +18,7 @@ namespace RhSolutions.Models } Sheet = workbook.ActiveSheet; - Name = workbook.FullName; + Name = Path.GetFileNameWithoutExtension(workbook.FullName); Range[] cells = new[] { |