aboutsummaryrefslogtreecommitdiff
path: root/src/Models/TargetPriceList.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Models/TargetPriceList.cs')
-rw-r--r--src/Models/TargetPriceList.cs41
1 files changed, 0 insertions, 41 deletions
diff --git a/src/Models/TargetPriceList.cs b/src/Models/TargetPriceList.cs
deleted file mode 100644
index 2dcd48e..0000000
--- a/src/Models/TargetPriceList.cs
+++ /dev/null
@@ -1,41 +0,0 @@
-using Microsoft.Office.Interop.Excel;
-using System;
-using System.IO;
-using System.Linq;
-using Range = Microsoft.Office.Interop.Excel.Range;
-
-namespace RhSolutions.Models
-{
- internal class TargetPriceList : PriceListBase
- {
- public Range OldSkuCell { get; private set; }
-
- public TargetPriceList(Workbook workbook)
- {
- if (workbook == null)
- {
- throw new ArgumentException("Невозможно открыть книгу шаблонного файла. " +
- "Возможно открыт файл с именем, совпадающим с именем шаблонного файла.");
- }
-
- Sheet = workbook.ActiveSheet;
- Name = Path.GetFileNameWithoutExtension(workbook.FullName);
-
- Range[] cells = new[]
- {
- AmountCell = Sheet.Cells.Find(PriceListHeaders.Amount),
- SkuCell = Sheet.Cells.Find(PriceListHeaders.Sku),
- GroupCell = Sheet.Cells.Find(PriceListHeaders.Group),
- NameCell = Sheet.Cells.Find(PriceListHeaders.Name)
- };
-
- OldSkuCell = Sheet.Cells.Find(PriceListHeaders.OldSku);
-
- if (cells.Any(x => x == null))
- {
- throw new ArgumentException($"Шаблон {Name} не является прайс-листом");
- }
- }
- }
-}
-