Add converting primitives and calculators
This commit is contained in:
16
DataAccess/DTOs/Converters/IHasPrimitivesProcessLogic.cs
Normal file
16
DataAccess/DTOs/Converters/IHasPrimitivesProcessLogic.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using StructureHelperCommon.Infrastructures.Interfaces;
|
||||
using StructureHelperCommon.Models;
|
||||
using StructureHelperLogics.NdmCalculations.Primitives;
|
||||
|
||||
namespace DataAccess.DTOs.Converters
|
||||
{
|
||||
public interface IHasPrimitivesProcessLogic
|
||||
{
|
||||
Dictionary<(Guid id, Type type), ISaveable> ReferenceDictionary { get; set; }
|
||||
IHasPrimitives Source { get; set; }
|
||||
IHasPrimitives Target { get; set; }
|
||||
IShiftTraceLogger TraceLogger { get; set; }
|
||||
|
||||
void Process();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user