Ejemplo n.º 1
0
 public DeliveryLineViewModel(ProductViewModel _product, int _amount)
 {
     Product = _product;
     Amount  = _amount;
 }
Ejemplo n.º 2
0
 public DeliveryLineViewModel(DeliveryLine _deliveryLine)
 {
     Product = new ProductViewModel(_deliveryLine.Product);
     Amount  = _deliveryLine.Amount;
 }