RhSolutions-AddIn/src/PriceListTools/PriceList.cs

22 lines
462 B
C#
Raw Normal View History

2021-12-24 16:22:03 +03:00
using Microsoft.Office.Interop.Excel;
2022-01-26 17:41:46 +03:00
using System;
2021-12-24 16:22:03 +03:00
using System.Collections.Generic;
2022-01-09 10:37:25 +03:00
using System.IO;
using System.Linq;
2021-12-24 16:22:03 +03:00
namespace RehauSku.PriceListTools
{
2022-01-09 10:37:25 +03:00
internal class PriceList
2021-12-24 16:22:03 +03:00
{
2022-01-09 10:37:25 +03:00
public readonly string Name;
2022-01-26 17:41:46 +03:00
public PriceListSheet Sheet { get; private set; }
2021-12-24 16:22:03 +03:00
public PriceList(Workbook workbook)
{
2022-01-09 10:37:25 +03:00
Name = workbook.Name;
2022-01-26 17:41:46 +03:00
Sheet = new PriceListSheet(workbook.ActiveSheet);
2021-12-24 16:22:03 +03:00
}
}
}