public void Setup()
 {
     _gatorPagesService = Substitute.For <IGatorPagesService> ();
 }
 public ArticleController(IGatorPagesService gatorPagesService) : base(gatorPagesService)
 {
 }
Beispiel #3
0
 public GatorPagesBaseController(IGatorPagesService gatorPagesService)
 {
     _gatorPagesService = gatorPagesService;
 }