Index: Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs =================================================================== diff -u -rfbf9eca188c20c352a702ee20c183e5dc3c7acf1 -re2197d5a4596fc769d89bd2f661d657490017d76 --- Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision fbf9eca188c20c352a702ee20c183e5dc3c7acf1) +++ Ringtoets/ClosingStructures/src/Ringtoets.ClosingStructures.Data/ClosingStructure.cs (.../ClosingStructure.cs) (revision e2197d5a4596fc769d89bd2f661d657490017d76) @@ -19,12 +19,26 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. +using System; +using Core.Common.Base.Geometry; +using Ringtoets.Common.Data; + namespace Ringtoets.ClosingStructures.Data { /// /// Definition of a closing structure for the /// - public class ClosingStructure + public class ClosingStructure : StructureBase { + /// + /// Creates a new instance of . + /// + /// The name of the structure. + /// The identifier of the structure. + /// The location of the structure. + /// Thrown when or is null + /// , empty or consists of whitespace. + /// Thrown when is null. + public ClosingStructure(string name, string id, Point2D location) : base(name, id, location) {} } -} +} \ No newline at end of file