public ProfileController(IUserForecastService userForecastService, IMatchService matchService,
                          ITeamService teamService)
 {
     this.userForecastService = userForecastService;
     this.matchService        = matchService;
     this.teamService         = teamService;
 }
 public MatchController(IMatchService matchService, ITeamService teamService,
                        IUserForecastService userForecastService, IChampionshipService championshipService)
 {
     this.matchService        = matchService;
     this.teamService         = teamService;
     this.userForecastService = userForecastService;
     this.championshipService = championshipService;
 }
Exemple #3
0
 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;
 }
 public AccountController(IUserForecastService userForecastService, ITeamService teamService)
 {
     this.userForecastService = userForecastService;
     this.teamService         = teamService;
 }