Ejemplo n.º 1
0
 public DeleteProductionDateFromOrderProductAddressViewModel(OrderProductAddress orderProductAddress, DateTime productionDate)
 {
     OrderProductAddress = new OrderProductAddressViewModel(orderProductAddress);
     ProductionDate      = productionDate;
 }
 public DeleteDeliveryFromOrderProductAddressViewModel(OrderProductAddress orderProductAddress, int deliveryId)
 {
     OrderProductAddress = new OrderProductAddressViewModel(orderProductAddress);
     DeliveryId          = deliveryId;
 }
 public DeleteSizeFromOrderProductAddressViewModel(OrderProductAddress orderProductAddress, Size size)
 {
     OrderProductAddress = new OrderProductAddressViewModel(orderProductAddress);
     Size = new SizeViewModel(size);
 }