Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismSectionResultRow.cs =================================================================== diff -u -r6f13804bd7731f68a54aecc1805577344470ef20 -r773fa9dbb96e3e391ee0abff808550fc2e70d7d0 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismSectionResultRow.cs (.../ClosingStructuresFailureMechanismSectionResultRow.cs) (revision 6f13804bd7731f68a54aecc1805577344470ef20) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Forms/Views/ClosingStructuresFailureMechanismSectionResultRow.cs (.../ClosingStructuresFailureMechanismSectionResultRow.cs) (revision 773fa9dbb96e3e391ee0abff808550fc2e70d7d0) @@ -48,7 +48,7 @@ /// Thrown when any parameter is null. public ClosingStructuresFailureMechanismSectionResultRow(ClosingStructuresFailureMechanismSectionResult sectionResult, ClosingStructuresFailureMechanism failureMechanism, - IAssessmentSection assessmentSection) + IAssessmentSection assessmentSection) : base(sectionResult) { if (failureMechanism == null) @@ -100,14 +100,14 @@ } /// - /// Gets the value representing the result of the layer 2a assessment. + /// Gets the value representing the detailed assessment probability. /// [TypeConverter(typeof(NoProbabilityValueDoubleConverter))] - public double AssessmentLayerTwoA + public double DetailedAssessmentProbability { get { - return SectionResult.GetAssessmentLayerTwoA(failureMechanism, assessmentSection); + return SectionResult.GetDetailedAssessmentProbability(failureMechanism, assessmentSection); } }