Index: Application/Ringtoets/src/Application.Ringtoets.Storage/Create/RingtoetsPipingSurfaceLineCreateExtensions.cs =================================================================== diff -u -r9e1b97e9540df6cbd635120135c83de0260aa6d1 -r36ed0869d04cd54d2aee0abbd0ec88100334e097 --- Application/Ringtoets/src/Application.Ringtoets.Storage/Create/RingtoetsPipingSurfaceLineCreateExtensions.cs (.../RingtoetsPipingSurfaceLineCreateExtensions.cs) (revision 9e1b97e9540df6cbd635120135c83de0260aa6d1) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/Create/RingtoetsPipingSurfaceLineCreateExtensions.cs (.../RingtoetsPipingSurfaceLineCreateExtensions.cs) (revision 36ed0869d04cd54d2aee0abbd0ec88100334e097) @@ -51,11 +51,15 @@ var entity = new SurfaceLineEntity { - Name = surfaceLine.Name + Name = surfaceLine.Name, + ReferenceLineIntersectionX = Convert.ToDecimal(surfaceLine.ReferenceLineIntersectionWorldPoint.X), + ReferenceLineIntersectionY = Convert.ToDecimal(surfaceLine.ReferenceLineIntersectionWorldPoint.Y) }; CreateSurfaceLinePointEntities(surfaceLine, collector, entity); CreateCharacteristicPointEntities(surfaceLine, collector, entity); + collector.Create(entity, surfaceLine); + return entity; }