コード例 #1
0
 public virtual bool Equals(AbstractOrderDetail other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(Equals(other.Order, Order) && Equals(other.Product, Product));
 }
コード例 #2
0
ファイル: OrderDetail.cs プロジェクト: jogibear9988/ormbattle
	  public virtual bool Equals(AbstractOrderDetail other)
	  {
	    if (ReferenceEquals(null, other)) return false;
	    if (ReferenceEquals(this, other)) return true;
	    return Equals(other.Order, Order) && Equals(other.Product, Product);
	  }