Skip to content

Instantly share code, notes, and snippets.

@horsdal
Created January 13, 2018 19:15
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 horsdal/a9b966153c56005b3c520dcd8b9a3d89 to your computer and use it in GitHub Desktop.
Save horsdal/a9b966153c56005b3c520dcd8b9a3d89 to your computer and use it in GitHub Desktop.
using MediatR;
public interface Event<T> : INotification where T : Aggregate<T>
{
void When(T aggregate);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment