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