Exemple #1
0
 public OrderItem(ProductItemOrdered itemOrdered, decimal price, int quantity)
 {
     ItemOrdered = itemOrdered;
     Price       = price;
     Quantity    = quantity;
 }
Exemple #2
0
 public OrderItem(ProductItemOrdered itemOrdered, decimal price, decimal quantity)
 {
     this.ItemOrdered = itemOrdered;
     this.Price       = price;
     this.Quantity    = quantity;
 }