public PlayerScheduleQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public RemoveFromGroupHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #3
0
 public AssignCoachHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #4
0
 public ChangeOptionalChallengeHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #5
0
 public GetCoachesQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #6
0
 public PlayerAttendanceQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public GroupAttendanceQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public TodayGroupsQueryHandler(TrainingsDbContext dbContext, IPlayersServiceClient playersServiceClient)
 {
     _dbContext            = dbContext;
     _playersServiceClient = playersServiceClient;
 }
 public GetGroupsByIdQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
Exemple #10
0
 public CoachScheduleQueryHandler(TrainingsDbContext dbContext, IPlayersServiceClient playersServiceClient)
 {
     _dbContext            = dbContext;
     _playersServiceClient = playersServiceClient;
 }
 public CreateGroupHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public FillAttendanceCommandHandler(TrainingsDbContext dbContext, IBusPublisher busPublisher)
 {
     _dbContext    = dbContext;
     _busPublisher = busPublisher;
 }
Exemple #13
0
 public PlayerAssignedToGroupEventHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public CoachCreatedEventHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }