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; }