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