RhSolutions-AddIn/RhSolutions.AddIn/Services/ISleevesCaluculator.cs

7 lines
172 B
C#
Raw Normal View History

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