Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs =================================================================== diff -u -rd0368f7a05ee1fea5a181022d8619219c4e8c2b2 -r50409ca9cb39fd6b1d770546f13513b0518a8117 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs (.../CharacteristicPointEntity.cs) (revision d0368f7a05ee1fea5a181022d8619219c4e8c2b2) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/CharacteristicPointEntity.cs (.../CharacteristicPointEntity.cs) (revision 50409ca9cb39fd6b1d770546f13513b0518a8117) @@ -28,11 +28,10 @@ // //------------------------------------------------------------------------------ +using System; + namespace Application.Ringtoets.Storage.DbContext { - using System; - using System.Collections.Generic; - public partial class CharacteristicPointEntity { public long CharacteristicPointEntityId { get; set; } @@ -41,7 +40,7 @@ public Nullable X { get; set; } public Nullable Y { get; set; } public Nullable Z { get; set; } - + public virtual SurfaceLineEntity SurfaceLineEntity { get; set; } } -} +} \ No newline at end of file