7 lines
171 B
C#
7 lines
171 B
C#
namespace RhSolutions.Services;
|
|
|
|
public interface ISleevesCalculator
|
|
{
|
|
public Dictionary<Product, double> CalculateSleeves(Dictionary<Product, double> products);
|
|
}
|