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