9 lines
264 B
C#
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();
|
|
}
|