public StandingsController(
     IBetResultsService betResultsService,
     IUsersService usersService)
 {
     this.betResultsService = betResultsService;
     this.usersService      = usersService;
 }
Exemple #2
0
 public MatchesController(
     IMatchesService matchesService,
     IMatchResultsService matchResultsService,
     IMatchBetsService matchBetsService,
     ICountriesService countriesService,
     IBetResultsService betResultsService,
     IUsersService usersService)
 {
     this.matchesService      = matchesService;
     this.matchResultsService = matchResultsService;
     this.matchBetsService    = matchBetsService;
     this.countriesService    = countriesService;
     this.betResultsService   = betResultsService;
     this.usersService        = usersService;
 }