コード例 #1
0
 public OrderDetails(int orderid, Good goods, int numOfGood)
 {
     OrderId        = orderid;
     this.goods     = goods;
     this.numOfGood = numOfGood;
 }
コード例 #2
0
 public OrderDetails(Good goods, int numOfGood)
 {
     this.goods     = goods;
     this.numOfGood = numOfGood;
 }