Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IHydraulicLocationOutputEntity.cs =================================================================== diff -u -r0981b22c56801334d3f71343f1a861070a404e3e -r17dd865ebeac34b0d00e80d5a4afcea40c2dc83a --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IHydraulicLocationOutputEntity.cs (.../IHydraulicLocationOutputEntity.cs) (revision 0981b22c56801334d3f71343f1a861070a404e3e) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/IHydraulicLocationOutputEntity.cs (.../IHydraulicLocationOutputEntity.cs) (revision 17dd865ebeac34b0d00e80d5a4afcea40c2dc83a) @@ -21,8 +21,14 @@ namespace Application.Ringtoets.Storage.DbContext { + /// + /// Interface for an output entity that represents a hydraulic boundary location output. + /// public interface IHydraulicLocationOutputEntity { + /// + /// Gets or sets the calculation result. + /// double? Result { get; set; } /// @@ -45,7 +51,16 @@ /// double? CalculatedReliability { get; set; } + /// + /// Gets or sets the convergence status of a calculation. + /// + /// byte CalculationConvergence { get; set; } - byte HydraulicLocationOutputType { get; set; } + + /// + /// Sets the calculation output type. + /// + /// + byte HydraulicLocationOutputType { set; } } } \ No newline at end of file