public GetCurrentSeasonFixturesQueryHandler(LeagueReadModelContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 2
0
 public GetFixtureByDivisionQueryHandler(LeagueReadModelContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public TeamAddedToDivisionEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
Esempio n. 4
0
 public FindTeamByNameQueryHandler(LeagueReadModelContext repository)
 {
     this.repository = repository;
 }
 public GetDivisionTeamsQueryHandler(LeagueReadModelContext repository)
 {
     this.repository = repository;
 }
 public SeasonStartedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
Esempio n. 7
0
 public MatchPostponedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
 public DivisionCreatedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
 public GetSeasonListQueryHandler(LeagueReadModelContext repository)
 {
     this.repository = repository;
 }
Esempio n. 10
0
 public GetDivisionsQueryHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
Esempio n. 11
0
 public TeamCreatedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
 public WeekFixtureCreatedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
Esempio n. 13
0
 public GetAllFixtureMatchesQueryHandler(LeagueReadModelContext repository)
 {
     this.repository = repository;
 }
Esempio n. 14
0
 public GetTopFiveTeamQueryHandler(LeagueReadModelContext repository)
 {
     this.repository = repository;
 }
 public FindPossibleRescheduleFixturesQueryHandler(LeagueReadModelContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 16
0
 public GetNextMatchesQueryHandler(LeagueReadModelContext dbContext)
 {
     this.dbContext = dbContext;
 }
Esempio n. 17
0
 public FixtureMatchAddedEventHandler(LeagueReadModelContext context)
 {
     this.context = context;
 }
Esempio n. 18
0
 public MatchRescheduledEventHandler(LeagueReadModelContext dbContext)
 {
     this.dbContext = dbContext;
 }