Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs =================================================================== diff -u -r30747db7c17738e1e5c6f1f1745d433a14b7fdeb -r504f726111ede24adc838a345fdcd1c47227c79b --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs (.../AssessmentSectionCommentView.cs) (revision 30747db7c17738e1e5c6f1f1745d433a14b7fdeb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssessmentSectionCommentView.cs (.../AssessmentSectionCommentView.cs) (revision 504f726111ede24adc838a345fdcd1c47227c79b) @@ -21,6 +21,7 @@ using System.Windows.Forms; using Core.Common.Controls.Views; +using Ringtoets.Common.Data; namespace Ringtoets.Integration.Forms.Views { @@ -29,14 +30,26 @@ /// public partial class AssessmentSectionCommentView : UserControl, IView { + private object data; + /// /// Creates a new instance of . /// public AssessmentSectionCommentView() { InitializeComponent(); } - - public object Data { get; set; } + + public object Data + { + get + { + return data; + } + set + { + data = value as IAssessmentSection; + } + } } }