Exemple #1
0
 public HomeController(
     IHostingEnvironment hostingEnvironment,
     IHeroAppService heroAppService)
 {
     _hostingEnvironment = hostingEnvironment;
     _heroAppService     = heroAppService;
 }
 public PlayersController(IPlayerAppService playerAppService, IHeroAppService heroAppService)
 {
     _playerAppService = playerAppService;
     _heroAppService   = heroAppService;
 }
Exemple #3
0
 public HeroesController(IHeroAppService heroAppService)
 {
     _heroAppService = heroAppService;
 }
Exemple #4
0
 public TestController(IHeroAppService heroAppService)
 {
     _heroAppService = heroAppService;
 }
Exemple #5
0
 public HeroController(INotificationHandler <DomainNotification> notification,
                       IHeroAppService heroAppService)
     : base(notification)
 {
     _heroAppService = heroAppService;
 }