public PlayerScheduleQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public RemoveFromGroupHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#3
0
 public AssignCoachHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#4
0
 public ChangeOptionalChallengeHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#5
0
 public GetCoachesQueryHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
示例#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;
 }
示例#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;
 }
示例#13
0
 public PlayerAssignedToGroupEventHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }
 public CoachCreatedEventHandler(TrainingsDbContext dbContext)
 {
     _dbContext = dbContext;
 }