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