예제 #1
0
 public bool Equals(RoomForUpdate other)
 {
     if (other == null)
     {
         return(false);
     }
     return(this == other);
 }
예제 #2
0
        public override bool Equals(object obj)
        {
            RoomForUpdate other = obj as RoomForUpdate;

            if (other == null)
            {
                return(false);
            }
            return(this == other);
        }