Skip to content

Instantly share code, notes, and snippets.

@WillzZz
Created October 4, 2014 07:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save WillzZz/366e6617f4efbad6624a to your computer and use it in GitHub Desktop.
Save WillzZz/366e6617f4efbad6624a to your computer and use it in GitHub Desktop.
resharper mediator template
using strange.extensions.mediation.impl;
[Mediates(typeof($VIEW$))]
public class $MEDIATOR$ : Mediator
{
[Inject]
public $VIEW$ view { get; set; }
public override void OnRegister()
{
base.OnRegister();
}
public override void OnRemove()
{
base.OnRemove();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment