using StructureHelperCommon.Infrastructures.Interfaces; using System; namespace StructureHelperCommon.Models.Calculators { public interface ILogicCalculator : ILogic, ISaveable, ICloneable { /// /// Method for calculating /// void Run(); /// /// Result of Calculations /// IResult Result { get; } } }