コード例 #1
0
 public bool Equals(GiftViewModel other)
 {
     return(Id == other.Id && Name == other.Name && (Recipient == null || Recipient.Equals(other.Recipient)));
 }
コード例 #2
0
ファイル: GiftViewModel.cs プロジェクト: shay1e/ExpressMapper
 public bool Equals(GiftViewModel other)
 {
     return Id == other.Id && Name == other.Name && (Recipient == null || Recipient.Equals(other.Recipient));
 }