public EntryService(ApiDbContext context, ILoggerFactory loggerFactory, IMapper mapper , IEntryService defaultEntryService, ICompetitionGameService gameService) { _mapper = mapper; _logger = loggerFactory.CreateLogger <GameService>(); _defaultEntryService = defaultEntryService; _gameService = gameService; _context = context; }
public CompetitionsController(ICompetitionGameService gameService, IMapper mapperService) { _gameService = gameService; _mapperService = mapperService; }