Index: Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/PipingSurfaceLineCreator.cs =================================================================== diff -u -ra30271e26ecc2c171e2133fe0aace8556d0b504e -rd6fe8399e8398224cf1bda9259052232d85b85a4 --- Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/PipingSurfaceLineCreator.cs (.../PipingSurfaceLineCreator.cs) (revision a30271e26ecc2c171e2133fe0aace8556d0b504e) +++ Ringtoets/Piping/src/Ringtoets.Piping.KernelWrapper/PipingSurfaceLineCreator.cs (.../PipingSurfaceLineCreator.cs) (revision d6fe8399e8398224cf1bda9259052232d85b85a4) @@ -24,23 +24,24 @@ using Core.Common.Base.Geometry; using Deltares.WTIPiping; using Ringtoets.Piping.Primitives; +using PipingSurfaceLine = Ringtoets.Piping.Primitives.PipingSurfaceLine; namespace Ringtoets.Piping.KernelWrapper { /// - /// Creates instances which are required by the . + /// Creates instances which are required by the . /// internal static class PipingSurfaceLineCreator { /// - /// Creates a for the kernel + /// Creates a for the kernel /// given different surface line. /// /// The surface line configured in the Ringtoets application. /// The surface line to be consumed by the kernel. - public static PipingSurfaceLine Create(RingtoetsPipingSurfaceLine line) + public static Deltares.WTIPiping.PipingSurfaceLine Create(PipingSurfaceLine line) { - var surfaceLine = new PipingSurfaceLine + var surfaceLine = new Deltares.WTIPiping.PipingSurfaceLine { Name = line.Name }; @@ -52,7 +53,7 @@ return surfaceLine; } - private static IEnumerable CreatePoints(RingtoetsPipingSurfaceLine line) + private static IEnumerable CreatePoints(PipingSurfaceLine line) { Point2D[] projectedPoints = line.LocalGeometry.ToArray(); var pipingPoints = new List(); @@ -65,7 +66,7 @@ return pipingPoints; } - private static IEnumerable CreatePoint(RingtoetsPipingSurfaceLine line, Point2D[] projectedPoints, int index) + private static IEnumerable CreatePoint(PipingSurfaceLine line, Point2D[] projectedPoints, int index) { Point3D surfaceLinePoint = line.Points[index]; Point2D projectedPoint = projectedPoints[index];