public CompetitionSeasonPlayerClosedPredictionsController(IPlayerRepository playerRepository, IPredictionRepository predictionRepository, ICompetitionSeasonRepository competitionSeasonRepository)
 {
     PlayerRepository            = playerRepository;
     PredictionRepository        = predictionRepository;
     CompetitionSeasonRepository = competitionSeasonRepository;
 }
 public CompetitionSeasonLiveRankingsController(IPlayerRepository playerRepository, IPredictionRepository predictionRepository, ICompetitionSeasonRepository competitionSeasonRepository)
 {
     PlayerRepository            = playerRepository;
     PredictionRepository        = predictionRepository;
     CompetitionSeasonRepository = competitionSeasonRepository;
 }