public AdminController(IChampionshipService championshipService, ITeamService teamService, IMatchService matchService, IArticleService articleService, ITagService tagService, IInQuestionService inQuestionService, IUserForecastService userForecast) { this.championshipService = championshipService; this.teamService = teamService; this.matchService = matchService; this.articleService = articleService; this.tagService = tagService; this.inQuestionService = inQuestionService; this.userForecast = userForecast; }
public HomeController(IInQuestionService inQuestionService, IUserForecastService userForecastService) { this.inQuestionService = inQuestionService; this.userForecastService = userForecastService; }