public CompetitionQueryProcessor(IUsersQueryProcessor usersQueryProcessor, IUnitOfWork uow, ILeaguesQueryProcessor leaguesQueryProcessor, ISeasonsQueryProcessor seasonsQueryProcessor) { _uow = uow; _usersQueryProcessor = usersQueryProcessor; _leaguesQueryProcessor = leaguesQueryProcessor; _seasonsQueryProcessor = seasonsQueryProcessor; }
public SeasonsController(ISeasonsQueryProcessor query, IMapper mapper) { _query = query; _mapper = mapper; }
public LeaguesQueryProcessor(IUnitOfWork uow, ISeasonsQueryProcessor seasonsQueryProcessor, IUsersQueryProcessor usersQueryProcessor) { _usersQueryProcessor = usersQueryProcessor; _seasonsQueryProcessor = seasonsQueryProcessor; _uow = uow; }