Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs =================================================================== diff -u -rb784ac8be54e88a798f4b7b7ad54ffe47b587e20 -rb60b7e12cf211bdbe11e0a54734fa097e8ef2146 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs (.../HeightStructuresCalculation.cs) (revision b784ac8be54e88a798f4b7b7ad54ffe47b587e20) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Data/HeightStructuresCalculation.cs (.../HeightStructuresCalculation.cs) (revision b60b7e12cf211bdbe11e0a54734fa097e8ef2146) @@ -19,6 +19,7 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using Core.Common.Base; using Ringtoets.Common.Data.Calculation; using Ringtoets.HeightStructures.Data.Properties; @@ -33,9 +34,11 @@ /// /// Creates a new instance of . /// - public HeightStructuresCalculation() + /// General grass cover erosion inwards calculation input parameters that apply to each calculation. + /// When is null. + public HeightStructuresCalculation(GeneralHeightStructuresInput generalInputParameters) { - InputParameters = new HeightStructuresInput(new GeneralHeightStructuresInput()); + InputParameters = new HeightStructuresInput(generalInputParameters); Name = Resources.HeightStructuresCalculation_DefaultName; }