예제 #1
0
 public GameApiController(IGameService gameService,
                          IPlayerService playerService,
                          IGameNotifier gameNotifier)
 {
     _gameService   = gameService;
     _playerService = playerService;
     _gameNotifier  = gameNotifier;
 }
예제 #2
0
 public RoundApiController(IGameService gameService,
                           IPlayerService playerService,
                           IOptionGridService optionGridService,
                           IGameNotifier gameNotifier)
 {
     _gameService       = gameService;
     _playerService     = playerService;
     _optionGridService = optionGridService;
     _gameNotifier      = gameNotifier;
 }