Index: Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismSectionResultRow.cs =================================================================== diff -u -r91b6773de2fccf52417609b4ed9463f98d6451dd -re5d2b62a6626e9d34433859f6dccfcf5a1eff783 --- Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismSectionResultRow.cs (.../HeightStructuresFailureMechanismSectionResultRow.cs) (revision 91b6773de2fccf52417609b4ed9463f98d6451dd) +++ Ringtoets/HeightStructures/src/Ringtoets.HeightStructures.Forms/Views/HeightStructuresFailureMechanismSectionResultRow.cs (.../HeightStructuresFailureMechanismSectionResultRow.cs) (revision e5d2b62a6626e9d34433859f6dccfcf5a1eff783) @@ -22,10 +22,10 @@ using System; using System.ComponentModel; using Ringtoets.Common.Data.AssessmentSection; -using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Forms.TypeConverters; using Ringtoets.Common.Forms.Views; +using Ringtoets.Common.Primitives; using Ringtoets.HeightStructures.Data; namespace Ringtoets.HeightStructures.Forms.Views @@ -65,17 +65,17 @@ } /// - /// Gets or sets the value representing whether the section passed the layer 1 assessment. + /// Gets or sets the value representing the simple assessment result. /// - public AssessmentLayerOneState AssessmentLayerOne + public SimpleAssessmentResultType SimpleAssessmentResult { get { - return SectionResult.AssessmentLayerOne; + return SectionResult.SimpleAssessmentResult; } set { - SectionResult.AssessmentLayerOne = value; + SectionResult.SimpleAssessmentResult = value; SectionResult.NotifyObservers(); } }