Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/Merge/AssessmentSectionsOwner.cs =================================================================== diff -u --- Ringtoets/Integration/src/Ringtoets.Integration.Data/Merge/AssessmentSectionsOwner.cs (revision 0) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/Merge/AssessmentSectionsOwner.cs (revision 3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49) @@ -0,0 +1,15 @@ +using System.Collections.Generic; + +namespace Ringtoets.Integration.Data.Merge +{ + /// + /// Class that holds a collection of . + /// + public class AssessmentSectionsOwner + { + /// + /// Gets or sets the collection of . + /// + public IEnumerable AssessmentSection { get; set; } + } +} \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj =================================================================== diff -u -rf806fff6a5ffb1ae1267dda990d6c170b55083da -r3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj (.../Ringtoets.Integration.Data.csproj) (revision f806fff6a5ffb1ae1267dda990d6c170b55083da) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/Ringtoets.Integration.Data.csproj (.../Ringtoets.Integration.Data.csproj) (revision 3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49) @@ -16,6 +16,7 @@ + Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Merge/AssessmentSectionsOwnerTest.cs =================================================================== diff -u --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Merge/AssessmentSectionsOwnerTest.cs (revision 0) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Merge/AssessmentSectionsOwnerTest.cs (revision 3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49) @@ -0,0 +1,19 @@ +using NUnit.Framework; +using Ringtoets.Integration.Data.Merge; + +namespace Ringtoets.Integration.Data.Test.Merge +{ + [TestFixture] + public class AssessmentSectionsOwnerTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Call + var owner = new AssessmentSectionsOwner(); + + // Assert + Assert.IsNull(owner.AssessmentSection); + } + } +} \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj =================================================================== diff -u -rcfc2b6f9af4cebad39cf9e5c47c703bfe47d5998 -r3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj (.../Ringtoets.Integration.Data.Test.csproj) (revision cfc2b6f9af4cebad39cf9e5c47c703bfe47d5998) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Ringtoets.Integration.Data.Test.csproj (.../Ringtoets.Integration.Data.Test.csproj) (revision 3c6f16091f1dfbf8c521fc0d1e49e2941f46fd49) @@ -23,6 +23,7 @@ +