Index: Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IDesignWaterLevelCalculation.cs
===================================================================
diff -u -rec03b23520b9fbc7e2f79f2a5589bb832b510fda -ra5c551a343fee7ea3d7e46dd36c82cf180a1b597
--- Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IDesignWaterLevelCalculation.cs (.../IDesignWaterLevelCalculation.cs) (revision ec03b23520b9fbc7e2f79f2a5589bb832b510fda)
+++ Ringtoets/Common/src/Ringtoets.Common.Data/Hydraulics/IDesignWaterLevelCalculation.cs (.../IDesignWaterLevelCalculation.cs) (revision a5c551a343fee7ea3d7e46dd36c82cf180a1b597)
@@ -22,31 +22,28 @@
namespace Ringtoets.Common.Data.Hydraulics
{
///
- /// Interface for a design water level calculation
+ /// Interface for a design water level calculation.
///
public interface IDesignWaterLevelCalculation
{
///
/// 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