aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/AbstractPriceList.cs
blob: 06427a01e0ae10dd40626a9f1dec0f5742a0160a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Microsoft.Office.Interop.Excel;

namespace RehauSku.PriceListTools
{
    internal abstract class AbstractPriceList
    {
        protected const string amountHeader = "Кол-во";
        protected const string skuHeader = "Актуальный материал";
        protected const string groupHeader = "Программа";
        protected const string nameHeader = "Наименование";

        public Range amountCell { get; protected set; }
        public Range skuCell { get; protected set; }
        public Range groupCell { get; protected set; }
        public Range nameCell { get; protected set; }

        public Worksheet Sheet { get; protected set; }
        public string Name { get; protected set; }
    }
}