RhSolutions-AddIn/RhSolutions.AddIn/Services/CouplingsCalculator.cs

10 lines
239 B
C#
Raw Normal View History

2023-11-02 23:07:06 +03:00
namespace RhSolutions.Services;
public class CouplingsCalculator : IFittingsCalculator
{
public Dictionary<Product, double> Calculate(Dictionary<Product, double> products)
{
throw new NotImplementedException();
}
}