RhSolutions-AddIn/RhSolutions.AddIn/Services/ISleevesCalculator.cs
2023-06-21 07:11:31 +03:00

7 lines
171 B
C#

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