Add work plane property saving

This commit is contained in:
Evgeny Redikultsev
2025-01-25 19:21:34 +05:00
parent bbc6ade283
commit 3a946a29bc
37 changed files with 765 additions and 324 deletions

View File

@@ -1,4 +1,5 @@
using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.WorkPlanes;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -10,5 +11,6 @@ namespace StructureHelperLogics.Models.CrossSections
public interface ICrossSection : ISaveable, ICloneable
{
ICrossSectionRepository SectionRepository { get; set; }
IWorkPlaneProperty WorkPlaneProperty { get; set; }
}
}