Exemple #1
0
 public IntroController(IIntroService introService)
 {
     _introService = introService;
 }
Exemple #2
0
 public HomeController(IIntroService introService, IHeroService heroService)
 {
     this.introService = introService;
     this.heroService  = heroService;
 }