public HeroService(HeroesDbContext context, IPowerService powerService, IHeroTypeService heroTypeService, IUserService userService, IOptions <AppSettings> appSettings, IRewardService rewardService)
 {
     _context         = context;
     _powerService    = powerService;
     _heroTypeService = heroTypeService;
     _userService     = userService;
     _appSettings     = appSettings.Value;
     _rewardService   = rewardService;
 }
 public HeroTypeAppService(IHeroTypeService heroTypeService)
 {
     _heroTypeService = heroTypeService;
 }
Exemplo n.º 3
0
 public HeroTypeController(IHeroTypeService heroTypeService)
 {
     _heroTypeService = heroTypeService;
 }