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