using StructureHelperCommon.Infrastructures.Interfaces; namespace StructureHelperLogics.Models.BeamShears { /// /// Implements logic for obtaining of inclined section /// public interface IGetInclinedSectionLogic : ILogic { /// /// Returns inclined section /// /// Inclined section IInclinedSection GetInclinedSection(); } }