using StructureHelper.Models.Materials; using StructureHelperCommon.Models.Forces; using StructureHelperLogics.Models.Primitives; using StructureHelperLogics.NdmCalculations.Analyses; using StructureHelperLogics.NdmCalculations.Primitives; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.Models.CrossSections { public class CrossSectionRepository : ICrossSectionRepository { public List ForceCombinationLists { get; private set; } public List HeadMaterials { get; private set; } public List Primitives { get; } public List Calculators { get; private set; } public CrossSectionRepository() { ForceCombinationLists = new List(); HeadMaterials = new List(); Primitives = new List(); Calculators = new List(); } } }