Exemple #1
0
 public OrderDetails(int orderid, Good goods, int numOfGood)
 {
     OrderId        = orderid;
     this.goods     = goods;
     this.numOfGood = numOfGood;
 }
 public OrderDetails(Good goods, int numOfGood)
 {
     this.goods     = goods;
     this.numOfGood = numOfGood;
 }