예제 #1
0
 public MatchesController(ITeamLeaguesService teamLeaguesService, IFixturesService fixturesService,
                          IFieldsService fieldsService, IPlayersService usersService, IMatchesService matchesService)
 {
     this.teamLeaguesService = teamLeaguesService;
     this.fixturesService    = fixturesService;
     this.fieldsService      = fieldsService;
     this.usersService       = usersService;
     this.matchesService     = matchesService;
 }
예제 #2
0
 public TrophiesController(ILeaguesService leaguesService, ITrophiesService trophiesService, ITeamLeaguesService teamLeaguesService)
 {
     this.leaguesService     = leaguesService;
     this.trophiesService    = trophiesService;
     this.teamLeaguesService = teamLeaguesService;
 }
예제 #3
0
 public TrophiesService(FooteoDbContext dbContext, ITeamLeaguesService teamLeaguesService)
 {
     this.dbContext          = dbContext;
     this.teamLeaguesService = teamLeaguesService;
 }
 public RefereesService(FooteoDbContext dbContext, IMatchesService matchesService, ITeamLeaguesService teamLeaguesService)
 {
     this.dbContext          = dbContext;
     this.matchesService     = matchesService;
     this.teamLeaguesService = teamLeaguesService;
 }