Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs =================================================================== diff -u -rdb77ae03f93f27b25268dd9f62f0091a47fe22d8 -r7111575120feef926652228c88b963ae1c18287e --- Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision db77ae03f93f27b25268dd9f62f0091a47fe22d8) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/PipingProbabilityAssessmentInput.cs (.../PipingProbabilityAssessmentInput.cs) (revision 7111575120feef926652228c88b963ae1c18287e) @@ -23,14 +23,15 @@ using System.Globalization; using Core.Common.Base; using Core.Common.Base.Data; +using Ringtoets.Common.Data.Probability; using Ringtoets.Piping.Data.Properties; namespace Ringtoets.Piping.Data { /// /// This class holds parameters which influence the probability estimate for a piping assessment. /// - public class PipingProbabilityAssessmentInput + public class PipingProbabilityAssessmentInput : IProbabilityAssessmentInput { private static readonly Range validityRangeA = new Range(0, 1); private double a; @@ -46,10 +47,10 @@ } /// - /// Gets or sets 'a' parameter used to factor in the 'length effect' when determining the - /// maximum tolerated probability of failure. + /// Gets or sets the length of the assessment section. /// - /// Thrown when value is not in the range [0, 1]. + public double SectionLength { get; set; } + public double A { get @@ -68,15 +69,6 @@ } } - /// - /// Gets 'b' parameter used to factor in the 'length effect' when determining the - /// maximum tolerated probability of failure. - /// public double B { get; } - - /// - /// Gets or sets the length of the assessment section. - /// - public double SectionLength { get; set; } } } \ No newline at end of file