Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/ClosingStructuresOutputEntity.cs =================================================================== diff -u -r1743a40d015bd40d090c6d107f79d87594e90efd -r7d43d889a3f8d125f0a66b53f247ecde11577578 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/ClosingStructuresOutputEntity.cs (.../ClosingStructuresOutputEntity.cs) (revision 1743a40d015bd40d090c6d107f79d87594e90efd) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/ClosingStructuresOutputEntity.cs (.../ClosingStructuresOutputEntity.cs) (revision 7d43d889a3f8d125f0a66b53f247ecde11577578) @@ -28,21 +28,20 @@ // //------------------------------------------------------------------------------ +using System; + namespace Application.Ringtoets.Storage.DbContext { - using System; - using System.Collections.Generic; - public partial class ClosingStructuresOutputEntity { public long ClosingStructuresOutputEntityId { get; set; } public long ClosingStructuresCalculationEntityId { get; set; } + + public virtual ClosingStructuresCalculationEntity ClosingStructuresCalculationEntity { get; set; } public Nullable RequiredProbability { get; set; } public Nullable RequiredReliability { get; set; } public Nullable Probability { get; set; } public Nullable Reliability { get; set; } public Nullable FactorOfSafety { get; set; } - - public virtual ClosingStructuresCalculationEntity ClosingStructuresCalculationEntity { get; set; } } -} +} \ No newline at end of file