Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs =================================================================== diff -u -rf9350cfb1723fd0c399203569c02a48815333b09 -r8a8d4be248a3fb7bb364dce3bcde587d58b8f873 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs (.../AssessmentSectionProvider.cs) (revision f9350cfb1723fd0c399203569c02a48815333b09) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs (.../AssessmentSectionProvider.cs) (revision 8a8d4be248a3fb7bb364dce3bcde587d58b8f873) @@ -19,7 +19,9 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; using System.Collections.Generic; +using System.Windows.Forms; using Ringtoets.Integration.Data; namespace Ringtoets.Integration.Plugin.Merge @@ -29,9 +31,27 @@ /// public class AssessmentSectionProvider : IAssessmentSectionProvider { + private readonly IWin32Window viewParent; + + /// + /// Initializes a new instance of . + /// + /// The parent of the view. + /// Thrown when + /// is null. + public AssessmentSectionProvider(IWin32Window viewParent) + { + if (viewParent == null) + { + throw new ArgumentNullException(nameof(viewParent)); + } + + this.viewParent = viewParent; + } + public IEnumerable GetAssessmentSections(string filePath) { - throw new System.NotImplementedException(); + throw new NotImplementedException(); } } } \ No newline at end of file