public bool Equals(RoomForUpdate other) { if (other == null) { return(false); } return(this == other); }
public override bool Equals(object obj) { RoomForUpdate other = obj as RoomForUpdate; if (other == null) { return(false); } return(this == other); }