RhSolutions-AddIn/src/PriceListTools/AbstractPriceList.cs

20 lines
747 B
C#
Raw Normal View History

2021-12-24 16:22:03 +03:00
using Microsoft.Office.Interop.Excel;
namespace RehauSku.PriceListTools
{
2022-02-02 18:03:49 +03:00
internal abstract class AbstractPriceList
2021-12-24 16:22:03 +03:00
{
2022-01-27 09:59:33 +03:00
protected const string amountHeader = "Кол-во";
protected const string skuHeader = "Актуальный материал";
protected const string groupHeader = "Программа";
2022-01-28 11:41:35 +03:00
protected const string nameHeader = "Наименование";
2022-01-26 18:17:44 +03:00
2022-01-27 09:59:33 +03:00
public Range amountCell { get; protected set; }
public Range skuCell { get; protected set; }
public Range groupCell { get; protected set; }
2022-01-28 11:41:35 +03:00
public Range nameCell { get; protected set; }
2022-01-26 18:17:44 +03:00
2022-01-27 09:59:33 +03:00
public Worksheet Sheet { get; protected set; }
public string Name { get; protected set; }
2021-12-24 16:22:03 +03:00
}
2022-01-27 09:59:33 +03:00
}