Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs =================================================================== diff -u -r1122c77d39fb41b02f4ea32a269884ca1ea5ad5e -rd912f6a5edd00d9dfa1af486e61afd9e7c10b766 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs (.../SoilLayerEntity.cs) (revision 1122c77d39fb41b02f4ea32a269884ca1ea5ad5e) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/SoilLayerEntity.cs (.../SoilLayerEntity.cs) (revision d912f6a5edd00d9dfa1af486e61afd9e7c10b766) @@ -28,11 +28,10 @@ // //------------------------------------------------------------------------------ +using System; + namespace Application.Ringtoets.Storage.DbContext { - using System; - using System.Collections.Generic; - public partial class SoilLayerEntity { public long SoilLayerEntityId { get; set; } @@ -49,7 +48,7 @@ public Nullable PermeabilityMean { get; set; } public Nullable PermeabilityDeviation { get; set; } public int Order { get; set; } - + public virtual SoilProfileEntity SoilProfileEntity { get; set; } } -} +} \ No newline at end of file