コード例 #1
0
 public CompetitionQueryProcessor(IUsersQueryProcessor usersQueryProcessor, IUnitOfWork uow, ILeaguesQueryProcessor leaguesQueryProcessor, ISeasonsQueryProcessor seasonsQueryProcessor)
 {
     _uow = uow;
     _usersQueryProcessor   = usersQueryProcessor;
     _leaguesQueryProcessor = leaguesQueryProcessor;
     _seasonsQueryProcessor = seasonsQueryProcessor;
 }
コード例 #2
0
 public SeasonsController(ISeasonsQueryProcessor query, IMapper mapper)
 {
     _query  = query;
     _mapper = mapper;
 }
コード例 #3
0
 public LeaguesQueryProcessor(IUnitOfWork uow, ISeasonsQueryProcessor seasonsQueryProcessor, IUsersQueryProcessor usersQueryProcessor)
 {
     _usersQueryProcessor   = usersQueryProcessor;
     _seasonsQueryProcessor = seasonsQueryProcessor;
     _uow = uow;
 }