diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-02 18:03:49 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2022-02-02 18:03:49 +0300 |
commit | bf2e187e6625ca4d19a6d48000843c9813a3efa5 (patch) | |
tree | 89e168d1ccd4840ddf919eab49c9262c9d8f76ce /src/PriceListTools/PriceList.cs | |
parent | 8f9cc1a46247fb3304340618068a7e3498d2630e (diff) |
Make base PriceList class abstract
Diffstat (limited to 'src/PriceListTools/PriceList.cs')
-rw-r--r-- | src/PriceListTools/PriceList.cs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/PriceListTools/PriceList.cs b/src/PriceListTools/PriceList.cs deleted file mode 100644 index 65ff3df..0000000 --- a/src/PriceListTools/PriceList.cs +++ /dev/null @@ -1,20 +0,0 @@ -using Microsoft.Office.Interop.Excel; - -namespace RehauSku.PriceListTools -{ - internal class PriceList - { - 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; } - } -}
\ No newline at end of file |