blob: e2fd142b95d77b5153749c08dbe0a53a787a5534 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using Microsoft.Office.Interop.Excel;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
namespace RehauSku.PriceListTools
{
internal class PriceList
{
public readonly string Name;
public PriceListSheet Sheet { get; private set; }
public PriceList(Workbook workbook)
{
Name = workbook.Name;
Sheet = new PriceListSheet(workbook.ActiveSheet);
}
}
}
|