FixActionDeleting

This commit is contained in:
Evgeny Redikultsev
2025-12-21 17:05:13 +05:00
parent ac34a26c15
commit 002be12b2f
9 changed files with 301 additions and 251 deletions

View File

@@ -1,4 +1,5 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
using StructureHelperLogics.NdmCalculations.Primitives;
using System;
using System.Collections.Generic;
@@ -8,6 +9,7 @@ namespace StructureHelperLogics.Models.CrossSections
{
public interface IRepositoryOperationsLogic
{
IRepositoryOperation<ICrossSectionRepository, IForceAction> Actions { get; }
IRepositoryOperation<ICrossSectionRepository, INdmPrimitive> Primitives { get; }
}
}