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