Exemple #1
0
 public UserGamesController(
     UserManager <ApplicationUser> userManager,
     IUserGamesService userGamesService,
     IPlayersService playersService,
     IFixtureScraperService fixtureScraperService)
 {
     this.userManager           = userManager;
     this.userGamesService      = userGamesService;
     this.playersService        = playersService;
     this.fixtureScraperService = fixtureScraperService;
 }
Exemple #2
0
 public UserActiveTeamInfoViewComponent(
     IUserGamesService userGamesService,
     IFixtureScraperService fixtureScraperService,
     IPlayersService playersService,
     UserManager <ApplicationUser> userManager)
 {
     this.userGamesService      = userGamesService;
     this.fixtureScraperService = fixtureScraperService;
     this.playersService        = playersService;
     this.userManager           = userManager;
 }
 public UsersController(
     IUserGamesService userGamesService,
     IUsersService usersService,
     IFixtureService fixtureService,
     IFixtureScraperService fixtureScraperService)
 {
     this.userGamesService      = userGamesService;
     this.usersService          = usersService;
     this.fixtureService        = fixtureService;
     this.fixtureScraperService = fixtureScraperService;
 }
Exemple #4
0
 public SupportersController(
     IUsersService usersService,
     IUserGamesService userGamesService,
     IPlayersPointsService playersPointsService,
     IFixtureScraperService fixtureScraperService,
     IClubsService clubsService)
 {
     this.usersService          = usersService;
     this.userGamesService      = userGamesService;
     this.playersPointsService  = playersPointsService;
     this.fixtureScraperService = fixtureScraperService;
     this.clubsService          = clubsService;
 }