RhSolutions-AddIn/RhSolutions.AddIn/Services/IExcelReader.cs
2023-04-07 07:19:49 +03:00

10 lines
364 B
C#

namespace RhSolutions.Services;
public interface IExcelReader : IDisposable
{
public Dictionary<Product, double> ReadProducts(Range range);
public List<(string, Dictionary<Product, double>)> ReadProducts(IEnumerable<Worksheet> worksheets);
public List<(string, Dictionary<Product, double>)> ReadProducts(string[] files);
new void Dispose();
}