RhSolutions-AddIn/RhSolutions.AddIn/Services/ISleevesCalculator.cs

7 lines
171 B
C#
Raw Normal View History

2023-06-20 11:50:11 +03:00
namespace RhSolutions.Services;
2023-06-21 07:11:31 +03:00
public interface ISleevesCalculator
2023-06-20 11:50:11 +03:00
{
public Dictionary<Product, double> CalculateSleeves(Dictionary<Product, double> products);
}