using LoaderCalculator.Data.Ndms;
namespace StructureHelperLogics.NdmCalculations.Triangulations
{
///
/// Implements logic of obtaining of collection of ndm parts
///
public interface ITriangulationLogic
{
///
/// Returns collection of ndm parts
///
///
IEnumerable GetNdmCollection();
///
/// Check options of triangulation
///
///
void ValidateOptions(ITriangulationLogicOptions options);
}
}