예제 #1
0
 public HomeController(ITeamRepository teamRepository, IPouleRepository pouleRepository, IGameRepository gameRepository)
 {
     _teamRepository  = teamRepository;
     _pouleRepository = pouleRepository;
     _gameRepository  = gameRepository;
 }
예제 #2
0
 public GameController(IPouleRepository pouleRepository, IGameRepository gameRepository)
 {
     _pouleRepository = pouleRepository;
     _gameRepository  = gameRepository;
 }