Exemplo n.º 1
0
 public SubmitWorkoutCommandHandler(
     UserManager <ApplicationUser> userManager,
     BrorepDbContext brorepDbContext,
     IDateTime dateTime)
 {
     _userManager = userManager;
     _context     = brorepDbContext;
     _dateTime    = dateTime;
 }
Exemplo n.º 2
0
 public GetJudgingTypesQueryHandler(BrorepDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 3
0
 public GetWorkoutByNameForSeasonQueryHandler(BrorepDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetWorkoutsForCurrentSeasonQueryHandler(BrorepDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }