Index: Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationEntity.cs =================================================================== diff -u -ra26f8ba0067df146397c8505ec9dc98dda1c94fd -rec9f45c99b375218d00a89df1ac1e187ebf54070 --- Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationEntity.cs (.../DuneLocationEntity.cs) (revision a26f8ba0067df146397c8505ec9dc98dda1c94fd) +++ Application/Ringtoets/src/Application.Ringtoets.Storage/DbContext/DuneLocationEntity.cs (.../DuneLocationEntity.cs) (revision ec9f45c99b375218d00a89df1ac1e187ebf54070) @@ -28,19 +28,20 @@ // //------------------------------------------------------------------------------ +using System; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; + namespace Application.Ringtoets.Storage.DbContext { - using System; - using System.Collections.Generic; - public partial class DuneLocationEntity { - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] + [SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] public DuneLocationEntity() { DuneLocationOutputEntities = new HashSet(); } - + public long DuneLocationEntityId { get; set; } public long FailureMechanismEntityId { get; set; } public long LocationId { get; set; } @@ -52,9 +53,10 @@ public Nullable Orientation { get; set; } public Nullable D50 { get; set; } public int Order { get; set; } - + public virtual FailureMechanismEntity FailureMechanismEntity { get; set; } - [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] + + [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")] public virtual ICollection DuneLocationOutputEntities { get; set; } } -} +} \ No newline at end of file