Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IWaveHeightCalculation.cs =================================================================== diff -u -r959924f8d1ddff924bb3306444d1f13fef85e545 -ra5c551a343fee7ea3d7e46dd36c82cf180a1b597 --- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IWaveHeightCalculation.cs (.../IWaveHeightCalculation.cs) (revision 959924f8d1ddff924bb3306444d1f13fef85e545) +++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IWaveHeightCalculation.cs (.../IWaveHeightCalculation.cs) (revision a5c551a343fee7ea3d7e46dd36c82cf180a1b597) @@ -29,24 +29,21 @@ /// /// Gets the database id of the hydraulic boundary location. /// - /// The database id of the hydraulic boundary location. - long GetId(); + long Id { get; } /// /// Gets the name of the hydraulic boundary location. /// - /// The name of the hydraulic boundary location. - string GetName(); + string Name { get; } /// /// Gets if the illustration points should be calculated. /// - /// The illustration points should be calculated. - bool GetCalculateIllustrationPoints(); + bool CalculateIllustrationPoints { get; } /// - ///Sets the output of the design water level calculation. + /// Gets or sets the output of the design water level calculation. /// - void SetOutput(HydraulicBoundaryLocationOutput output); + HydraulicBoundaryLocationOutput Output { get; set; } } } \ No newline at end of file