diff options
Diffstat (limited to 'src/PriceListTools/AbstractPriceList.cs')
-rw-r--r-- | src/PriceListTools/AbstractPriceList.cs | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/PriceListTools/AbstractPriceList.cs b/src/PriceListTools/AbstractPriceList.cs index 06427a0..2f89a85 100644 --- a/src/PriceListTools/AbstractPriceList.cs +++ b/src/PriceListTools/AbstractPriceList.cs @@ -4,15 +4,10 @@ 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 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; } |