Index: Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs =================================================================== diff -u -r61dc09c91989d5a593858f8939530e7e929ecbf8 -ra5d753e220f0228bd467ca0cfc0fb54a024c1b14 --- Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs (.../AssessmentSectionProvider.cs) (revision 61dc09c91989d5a593858f8939530e7e929ecbf8) +++ Ringtoets/Integration/src/Ringtoets.Integration.Plugin/Merge/AssessmentSectionProvider.cs (.../AssessmentSectionProvider.cs) (revision a5d753e220f0228bd467ca0cfc0fb54a024c1b14) @@ -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