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