aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/Target.cs
blob: a7e87ec4846f82d1240f03892a7897591ddff08d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using Microsoft.Office.Interop.Excel;
using System;

namespace RehauSku.PriceListTools
{
    internal class Target : PriceList
    {
        public Target(Workbook workbook)
        {
            Sheet = workbook.ActiveSheet;
            Name = workbook.FullName;

            amountCell = Sheet.Cells.Find(amountHeader);
            skuCell = Sheet.Cells.Find(skuHeader);
            groupCell = Sheet.Cells.Find(groupHeader);
            nameCell = Sheet.Cells.Find(nameHeader);

            if (amountCell == null || skuCell == null || groupCell == null || nameCell == null)
            {
                throw new ArgumentException($"Шаблон { Name } не является прайс-листом");
            }
        }
    }
}