Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created May 3, 2016 01:57
Show Gist options
  • Select an option

  • Save dcomartin/bef791b956b98bdab73612859dc6fb04 to your computer and use it in GitHub Desktop.

Select an option

Save dcomartin/bef791b956b98bdab73612859dc6fb04 to your computer and use it in GitHub Desktop.
public static class HangfireHelpers
{
public static IMediator Mediator { private get; set; }
public static void Send(IRequest command)
{
Mediator.Send(command);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment