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

9 lines
269 B
C#

namespace RhSolutions.Services;
public interface IExcelWriter : IDisposable
{
public void WriteProducts(IEnumerable<(string, Dictionary<Product, double>)> products);
public void WriteProducts(Dictionary<Product, double> products);
new void Dispose();
}