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 { /// /// Implement logic for obtaining of summary force of action from start to end /// public interface IGetSumForceByShearActionLogic : ILogic { /// /// Returns summary force of action from start to end /// /// Source action /// Coordinate of start point, m /// Coordinate of end point, m /// Summary force, N double GetSumShearForce(IBeamShearLoad beamShearAction, double startCoord, double endCoord); } }