public TheProportionerSelectorService(IFootballRepository footballRepository)
 {
     _footballRepository = footballRepository;
     _playerStats = _footballRepository.GetPlayerStats();
     _teams = _footballRepository.GetTeams();
 }
 public GiantKillerSelectorService(IFootballRepository footballRepository)
 {
     _footballRepository = footballRepository;
     _playerStats = _footballRepository.GetPlayerStats();
     _teams = _footballRepository.GetTeams();
 }