Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationService.cs
===================================================================
diff -u -re88fa1dfcf62085f7fabc453b73dbc8ac3ff9223 -r20415b2886919a103cb4677f56a8f61abbb7aa8a
--- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationService.cs (.../HeightStructuresCalculationService.cs) (revision e88fa1dfcf62085f7fabc453b73dbc8ac3ff9223)
+++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationService.cs (.../HeightStructuresCalculationService.cs) (revision 20415b2886919a103cb4677f56a8f61abbb7aa8a)
@@ -38,7 +38,7 @@
///
/// Service that provides methods for performing Hydra-Ring calculations for height structures calculations.
///
- internal static class HeightStructuresCalculationService
+ public static class HeightStructuresCalculationService
{
///
/// Performs validation over the values on the given . Error and status information is logged during
@@ -47,7 +47,7 @@
/// The for which to validate the values.
/// The for which to validate the values.
/// Truec> if has no validation errors; Falsec> otherwise.
- internal static bool Validate(HeightStructuresCalculation calculation, IAssessmentSection assessmentSection)
+ public static bool Validate(HeightStructuresCalculation calculation, IAssessmentSection assessmentSection)
{
return CalculationServiceHelper.PerformValidation(calculation.Name, () => ValidateInput(calculation.InputParameters, assessmentSection));
}