Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created April 6, 2022 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/bd3994efe08d06a1e323b4fe8b197048 to your computer and use it in GitHub Desktop.
Save dcomartin/bd3994efe08d06a1e323b4fe8b197048 to your computer and use it in GitHub Desktop.
public async Task Handle(OrderRefunded message, IMessageHandlerContext context)
{
await context.SendLocal(new CancelOrder
{
OrderId = message.OrderId
// Translate OrderRefunded to CancelOrder
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment