Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationActivity.cs =================================================================== diff -u -r16cb360eae0014270ebb6700054afdbbd565ae65 -rfc4f8f86955f675f94208db783c8d0624d2b2250 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationActivity.cs (.../HeightStructuresCalculationActivity.cs) (revision 16cb360eae0014270ebb6700054afdbbd565ae65) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Service/HeightStructuresCalculationActivity.cs (.../HeightStructuresCalculationActivity.cs) (revision fc4f8f86955f675f94208db783c8d0624d2b2250) @@ -36,7 +36,7 @@ public class HeightStructuresCalculationActivity : HydraRingActivityBase { private readonly StructuresCalculation calculation; - private readonly string hlcdDirectory; + private readonly string hlcdFilepath; private readonly HeightStructuresFailureMechanism failureMechanism; private readonly IAssessmentSection assessmentSection; private readonly HeightStructuresCalculationService calculationService; @@ -45,20 +45,20 @@ /// Creates a new instance of . /// /// The height structures data used for the calculation. - /// The directory of the HLCD file that should be used for performing the calculation. + /// The filepath of the HLCD file that should be used for performing the calculation. /// The failure mechanism the calculation belongs to. /// The assessment section the calculation belongs to. /// Thrown when any input argument is null. - public HeightStructuresCalculationActivity(StructuresCalculation calculation, string hlcdDirectory, + public HeightStructuresCalculationActivity(StructuresCalculation calculation, string hlcdFilepath, HeightStructuresFailureMechanism failureMechanism, IAssessmentSection assessmentSection) { if (calculation == null) { throw new ArgumentNullException("calculation"); } - if (hlcdDirectory == null) + if (hlcdFilepath == null) { - throw new ArgumentNullException("hlcdDirectory"); + throw new ArgumentNullException("hlcdFilepath"); } if (failureMechanism == null) { @@ -70,7 +70,7 @@ } this.calculation = calculation; - this.hlcdDirectory = hlcdDirectory; + this.hlcdFilepath = hlcdFilepath; this.failureMechanism = failureMechanism; this.assessmentSection = assessmentSection; @@ -96,7 +96,7 @@ failureMechanismSection, failureMechanism.GeneralInput, failureMechanism.Contribution, - hlcdDirectory); + hlcdFilepath); } protected override void OnCancel()