Value points were added

This commit is contained in:
Evgeny Redikultsev
2024-03-02 21:40:13 +05:00
parent 2e8ebccc13
commit 4359b2c49b
41 changed files with 1127 additions and 439 deletions

View File

@@ -0,0 +1,12 @@
using LoaderCalculator.Data.Ndms;
using LoaderCalculator.Data.ResultData;
using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Calculators;
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
{
public interface IForceTupleTraceResultLogic : ILogic
{
void TraceResult(IResult result);
}
}