Ejemplo n.º 1
0
        private void UpdateShipmentToPurchShipShipped(string shipmentId)
        {
            //var updateShipment = new MergePatchShipment();
            var updateShipment = new ShipmentCommands.Ship();

            updateShipment.ShipmentId = shipmentId;
            updateShipment.CommandId  = Guid.NewGuid().ToString();
            //updateShipment.StatusId = StatusItemIds.PurchShipShipped;
            updateShipment.Version = 1;
            shipmentApplicationService.When(updateShipment);
        }
 public void When(ShipmentCommands.Ship c)
 {
     throw new NotImplementedException();//todo
 }