Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationActivity.cs
===================================================================
diff -u -r183d1e7ed095ea4e8024068bc4ddfcf3ac6997d3 -r4f6a54b97b4102b79fa75d8eb087321a9e6975a2
--- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationActivity.cs (.../ClosingStructuresCalculationActivity.cs) (revision 183d1e7ed095ea4e8024068bc4ddfcf3ac6997d3)
+++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Service/ClosingStructuresCalculationActivity.cs (.../ClosingStructuresCalculationActivity.cs) (revision 4f6a54b97b4102b79fa75d8eb087321a9e6975a2)
@@ -37,27 +37,27 @@
private readonly ClosingStructuresCalculationService calculationService;
private readonly ClosingStructuresFailureMechanism failureMechanism;
private readonly IAssessmentSection assessmentSection;
- private readonly string hlcdFilepath;
+ private readonly string hydraulicBoundaryDatabaseFilePath;
///
/// Creates a new instance of .
///
/// The closing structures data used for the calculation.
- /// The filepath of the HLCD file that should be used for performing the calculation.
+ /// The path which points to the hydraulic boundary database file.
/// The failure mechanism the calculation belongs to.
/// The assessment section the calculation belongs to.
/// Thrown when any input argument is null.
- public ClosingStructuresCalculationActivity(StructuresCalculation calculation, string hlcdFilepath,
+ public ClosingStructuresCalculationActivity(StructuresCalculation calculation, string hydraulicBoundaryDatabaseFilePath,
ClosingStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection)
{
if (calculation == null)
{
throw new ArgumentNullException("calculation");
}
- if (hlcdFilepath == null)
+ if (hydraulicBoundaryDatabaseFilePath == null)
{
- throw new ArgumentNullException("hlcdFilepath");
+ throw new ArgumentNullException("hydraulicBoundaryDatabaseFilePath");
}
if (failureMechanism == null)
@@ -73,7 +73,7 @@
this.calculation = calculation;
this.failureMechanism = failureMechanism;
this.assessmentSection = assessmentSection;
- this.hlcdFilepath = hlcdFilepath;
+ this.hydraulicBoundaryDatabaseFilePath = hydraulicBoundaryDatabaseFilePath;
Name = calculation.Name;
calculationService = new ClosingStructuresCalculationService();
@@ -91,7 +91,7 @@
calculationService.Calculate(calculation,
assessmentSection,
failureMechanism,
- hlcdFilepath);
+ hydraulicBoundaryDatabaseFilePath);
}
protected override void OnCancel()