public Task Handle(DispatchOrderToDhlSucsess message, IMessageHandlerContext context)
        {
            // complete of mark complete in state to keep the data or rehydrate the saga
            Console.WriteLine("Dispatch Order: {0} and DispatchId: {1} success with DHL", message.OrderId, message.DispatchId);

            return(Task.CompletedTask);
        }
예제 #2
0
 public void Handle(DispatchOrderToDhlSucsess message)
 {
     // complete of mark complete in state to keep the data or rehydrate the saga
     Console.WriteLine("Dispatch Order: {0} and DispatchId: {1} success ", message.OrderId, message.DispatchId);
 }