Index: Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/IllustrationPoints/RealizedStochast.cs =================================================================== diff -u -r0fd23ff8e68b5f0d18d344d104bc68216cb49b51 -rbe6a13ac1251d94b796612190233ac7a380b328e --- Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/IllustrationPoints/RealizedStochast.cs (.../RealizedStochast.cs) (revision 0fd23ff8e68b5f0d18d344d104bc68216cb49b51) +++ Ringtoets/HydraRing/src/Ringtoets.HydraRing.Calculation/Data/Output/IllustrationPoints/RealizedStochast.cs (.../RealizedStochast.cs) (revision be6a13ac1251d94b796612190233ac7a380b328e) @@ -19,6 +19,8 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; + namespace Ringtoets.HydraRing.Calculation.Data.Output.IllustrationPoints { /// @@ -28,8 +30,23 @@ public class RealizedStochast : Stochast { /// - /// Gets or sets the realization. + /// Creates an new instance of . /// - public double Realization { get; set; } = double.NaN; + /// The name. + /// The duration. + /// The alpha. + /// The realization. + /// Thrown when + /// is null. + public RealizedStochast(string name, double duration, double alpha, double realization) + : base(name, duration, alpha) + { + Realization = realization; + } + + /// + /// Gets the realization. + /// + public double Realization { get; } } } \ No newline at end of file