namespace Deltares.AssessmentMechanism
{
///
/// Base class an assessment calculation. Assessment calculations correspond with sub mechanisms in HydraRing.
///
public abstract class AssessmentCalculation
{
///
/// Executes the assessment calculation with information contained in the and returns a
/// with the calculated values.
///
/// The containing all the information used in the calculation.
/// A with the results of the calculation.
public abstract AssessmentCalculationResult Execute(DikeLocationInfo dikeLocationInfo);
}
}