Exemplo n.º 1
0
 public DeleteDeliveryFromOrderProductViewModel(OrderProduct orderProduct, int deliveryId)
 {
     OrderProduct = new OrderProductViewModel(orderProduct);
     DeliveryId   = deliveryId;
 }
Exemplo n.º 2
0
 public DeleteAddressFromOrderProductViewModel(OrderProduct orderProduct, Address address)
 {
     OrderProduct = new OrderProductViewModel(orderProduct);
     Address      = new AddressViewModel(address);
 }
Exemplo n.º 3
0
 public DeleteMaterialFromOrderProductViewModel(OrderProduct orderProduct, Material material)
 {
     OrderProduct = new OrderProductViewModel(orderProduct);
     Material     = new MaterialViewModel(material);
 }