public HomeController(ITeamRepository teamRepository, IPouleRepository pouleRepository, IGameRepository gameRepository)
 {
     _teamRepository  = teamRepository;
     _pouleRepository = pouleRepository;
     _gameRepository  = gameRepository;
 }
 public GameController(IPouleRepository pouleRepository, IGameRepository gameRepository)
 {
     _pouleRepository = pouleRepository;
     _gameRepository  = gameRepository;
 }