using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models.Forces;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Sections
{
///
/// Logic for calculating of some value
///
public interface IProcessorLogic : ILogic
{
///
/// Returns new value
///
///
T GetValue();
}
}