Index: Ringtoets/Integration/src/Ringtoets.Integration.Data/RingtoetsProject.cs =================================================================== diff -u -re2e6d944af7b0cea6c9c34e77bd0644149526c37 -r11f0867b39150ae5fac83dc178a89fee46d27611 --- Ringtoets/Integration/src/Ringtoets.Integration.Data/RingtoetsProject.cs (.../RingtoetsProject.cs) (revision e2e6d944af7b0cea6c9c34e77bd0644149526c37) +++ Ringtoets/Integration/src/Ringtoets.Integration.Data/RingtoetsProject.cs (.../RingtoetsProject.cs) (revision 11f0867b39150ae5fac83dc178a89fee46d27611) @@ -61,11 +61,6 @@ /// public string Description { get; set; } - /// - /// Gets or sets the unique identifier for the storage of the . - /// - public long StorageId { get; set; } - public bool Equals(IProject other) { var otherProject = other as RingtoetsProject; @@ -75,7 +70,6 @@ } return string.Equals(Name, otherProject.Name) && string.Equals(Description, otherProject.Description) && - StorageId == otherProject.StorageId && AssessmentSections.SequenceEqual(otherProject.AssessmentSections); } @@ -98,7 +92,7 @@ public override int GetHashCode() { - return StorageId.GetHashCode() ^ Name.GetHashCode() ^ Description.GetHashCode(); + return Name.GetHashCode() ^ Description.GetHashCode(); } } } \ No newline at end of file