예제 #1
0
파일: OrderItem.cs 프로젝트: SoundsQ/CSharp
 public OrderItem(Goods goods, int quantity)
 {
     this.goods     = goods;
     this.quantity  = quantity;
     this.itemprice = quantity * goods.Price;
 }
예제 #2
0
 public OrderDetails(Goods goods, int goodsNumber)
 {
     this.Goods       = goods;
     this.GoodsNumber = goodsNumber;
 }