Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 27, 2017 02:51
public class PaymentCommand : ICommand { }
public class PaymentHandler : ICommandHandler<PaymentCommand>
{
public async Task Handle(PaymentCommand command)
{
// Do some stuff...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment