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

10 lines
239 B
C#

namespace RhSolutions.Services;
public class CouplingsCalculator : IFittingsCalculator
{
public Dictionary<Product, double> Calculate(Dictionary<Product, double> products)
{
throw new NotImplementedException();
}
}