aboutsummaryrefslogtreecommitdiff
path: root/src/PriceListTools/PriceList.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:03:49 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:03:49 +0300
commitbf2e187e6625ca4d19a6d48000843c9813a3efa5 (patch)
tree89e168d1ccd4840ddf919eab49c9262c9d8f76ce /src/PriceListTools/PriceList.cs
parent8f9cc1a46247fb3304340618068a7e3498d2630e (diff)
Make base PriceList class abstract
Diffstat (limited to 'src/PriceListTools/PriceList.cs')
-rw-r--r--src/PriceListTools/PriceList.cs20
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