using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using TaskManager; namespace StructureHelperCommon.Models.Calculators { public interface ICalculator : ICloneable { string Name { get; set; } /// /// Method for calculating /// void Run(); /// /// Result of Calculations /// IResult Result { get; } } }