blob: 805cd04f11f60ea0b8b53cf9a0b82e3944a84f48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using Microsoft.Office.Interop.Excel;
namespace RhSolutions.PriceListTools
{
internal abstract class PriceListBase
{
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; }
}
}
|