예제 #1
0
 public GameTableService(IGamerService gamerService, IGameTableRepository gameTableRepository,
                         IBoardGameService boardGameService,
                         IGameParticipationService gameParticipationService, IGameResultRepository gameResultRepository)
 {
     _gamerService             = gamerService;
     _gameTableRepository      = gameTableRepository;
     _boardGameService         = boardGameService;
     _gameParticipationService = gameParticipationService;
     _gameResultRepository     = gameResultRepository;
 }
예제 #2
0
 public GameParticipationController(IGameParticipationService gameParticipationService)
 {
     _gameParticipationService = gameParticipationService;
 }