using StructureHelperCommon.Infrastructures.Interfaces;
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 BeamShearCalculatorInputData : IBeamShearCalculatorInputData
{
///
public Guid Id { get; }
///
public List Actions { get; } = new();
///
public List Sections { get; } = new();
///
public List Stirrups { get; } = new();
public IBeamShearDesignRangeProperty DesignRangeProperty { get; set; } = new BeamShearDesignRangeProperty(Guid.NewGuid());
public BeamShearCalculatorInputData(Guid id)
{
Id = id;
}
public void DeleteAction(IBeamShearAction action)
{
//nothing to do
}
public void DeleteSection(IBeamShearSection section)
{
//nothing to do
}
public void DeleteStirrup(IStirrup stirrup)
{
//nothing to do
}
}
}