Files
StructureHelper/StructureHelperLogics/Models/BeamShears/BeamShearRepository.cs
2025-03-29 21:45:49 +05:00

37 lines
867 B
C#

using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Calculators;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
public class BeamShearRepository : IBeamShearRepository
{
public Guid Id { get; }
public List<IBeamShearAction> Actions { get; } = new();
public List<ICalculator> Calculators { get; } = new();
public List<IBeamShearSection> Sections { get; } = new();
public List<IStirrup> Stirrups { get; } = new();
public BeamShearRepository(Guid id)
{
Id = id;
}
public object Clone()
{
throw new NotImplementedException();
}
}
}