public OrderItem(Goods goods, int quantity) { this.goods = goods; this.quantity = quantity; this.itemprice = quantity * goods.Price; }
public OrderDetails(Goods goods, int goodsNumber) { this.Goods = goods; this.GoodsNumber = goodsNumber; }