RhSolutions-AddIn/RhSolutions.AddIn/Services/ISleevesCaluculator.cs
2023-06-20 11:50:11 +03:00

7 lines
172 B
C#

namespace RhSolutions.Services;
public interface ISleevesCaluculator
{
public Dictionary<Product, double> CalculateSleeves(Dictionary<Product, double> products);
}