blob: 65ff3dfe4956464d2b291fc6b1409e5a9b9cf3c6 (
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 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; }
}
}
|