Exemplo n.º 1
0
 public override int GetHashCode()
 {
     return(Commodity.GetHashCode() * Quantity);
 }
Exemplo n.º 2
0
 public OrderItem(Commodity commodity, int num)
 {
     Commodity = new Commodity(commodity.Name, commodity.Price);
     Quantity  = num;
 }