Files
StructureHelper/StructureHelperLogics/Models/BeamShears/BeamShearSectionCalculator.cs
Evgeny Redikultsev e4a23f5139 Add BeamShearCalculator
2025-02-16 17:24:16 +05:00

35 lines
852 B
C#

using StructureHelperCommon.Models;
using StructureHelperCommon.Models.Calculators;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.Models.BeamShears
{
public class BeamShearSectionCalculator : IBeamShearSectionCalculator
{
private IBeamShearSectionCalculatorResult result;
public Guid Id { get; }
public string Name { get; set; }
public IBeamShearSectionCalculatorInputData InputData { get; set; }
public IResult Result => result;
public IShiftTraceLogger? TraceLogger { get; set; }
public object Clone()
{
throw new NotImplementedException();
}
public void Run()
{
throw new NotImplementedException();
}
}
}