public void MyUsefulMethod()
 {
     //Some stuff
     _dependency.DoThing();
     //Some more stuff
 }
Exemple #2
0
 public void OnActionExecuting(ActionExecutingContext context)
 {
     _dependency.DoThing();
 }