Created
October 4, 2014 07:43
-
-
Save WillzZz/366e6617f4efbad6624a to your computer and use it in GitHub Desktop.
resharper mediator template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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