2023-04-06 08:29:39 +03:00
|
|
|
|
namespace RhSolutions.Services;
|
|
|
|
|
|
2023-04-20 09:37:07 +03:00
|
|
|
|
public interface IWriter : IDisposable
|
2023-04-06 08:29:39 +03:00
|
|
|
|
{
|
|
|
|
|
public void WriteProducts(IEnumerable<(string, Dictionary<Product, double>)> products);
|
|
|
|
|
public void WriteProducts(Dictionary<Product, double> products);
|
2023-04-07 07:19:49 +03:00
|
|
|
|
new void Dispose();
|
2023-04-06 08:29:39 +03:00
|
|
|
|
}
|