RhSolutions-AddIn/RhSolutions.AddIn/Services/IWriter.cs
2023-04-20 09:37:07 +03:00

9 lines
264 B
C#

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