using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
namespace StructureHelperLogics.Models.BeamShears
{
///
/// Implements logic of calculating shear force without considering term and limit state
///
public interface IGetDirectShearForceLogic : ILogic
{
///
/// Returns value of shear force at the end of inclined section
///
/// Value of shear force at the end of inclined section
double CalculateShearForce();
}
}