using StructureHelperCommon.Infrastructures.Interfaces; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace StructureHelperLogics.NdmCalculations.Cracking { /// /// Logic for calculating width of crack /// public interface ICrackWidthLogic : ILogic { ICrackWidthLogicInputData InputData { get; set; } /// /// return width of crack in meters /// double GetCrackWidth(); } }