public bool Equals(GiftViewModel other)
 {
     return(Id == other.Id && Name == other.Name && (Recipient == null || Recipient.Equals(other.Recipient)));
 }
Example #2
0
 public bool Equals(GiftViewModel other)
 {
     return Id == other.Id && Name == other.Name && (Recipient == null || Recipient.Equals(other.Recipient));
 }