15 lines
491 B
C#
15 lines
491 B
C#
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Cracking
|
|
{
|
|
public interface IRebarCalulatorsFactory : ILogic
|
|
{
|
|
TupleCrackInputData InputData { get; set; }
|
|
double LongLength { get; set; }
|
|
IEnumerable<IRebarNdmPrimitive> Rebars { get; set; }
|
|
double ShortLength { get; set; }
|
|
|
|
List<IRebarCrackCalculator> GetCalculators();
|
|
}
|
|
} |