Index: Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismSectionResultContext.cs =================================================================== diff -u -r2c58a8ed345659c071f1531edb80bf6fc9e4f913 -rd49b0c7df08ca616edb5c3945adbb22eab479bf7 --- Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismSectionResultContext.cs (.../FailureMechanismSectionResultContext.cs) (revision 2c58a8ed345659c071f1531edb80bf6fc9e4f913) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/PresentationObjects/FailureMechanismSectionResultContext.cs (.../FailureMechanismSectionResultContext.cs) (revision d49b0c7df08ca616edb5c3945adbb22eab479bf7) @@ -25,11 +25,20 @@ namespace Ringtoets.Common.Forms.PresentationObjects { + /// + /// This class is a presentation object for . + /// public class FailureMechanismSectionResultContext { private readonly IEnumerable sectionResults; private readonly IFailureMechanism failureMechanism; + /// + /// Creates a new instance of . + /// + /// The of to wrap. + /// The belongs to. + /// Thrown when or is null. public FailureMechanismSectionResultContext(IEnumerable sectionResults, IFailureMechanism failureMechanism) { if (sectionResults == null) @@ -44,6 +53,9 @@ this.failureMechanism = failureMechanism; } + /// + /// Gets the wrapped of . + /// public IEnumerable SectionResults { get @@ -52,6 +64,9 @@ } } + /// + /// Gets the . + /// public IFailureMechanism FailureMechanism { get