public GetAllPendingStudentInvitesByInstructorHandler(GatedRegistrationContext db)
 {
     _db = db;
     _mapperConfiguration = new MapperConfiguration(cfg =>
     {
         cfg.AddProfile <InvitedUserProfile>();
     });
 }
Example #2
0
 public GetUserInGatedRegistrationByEmailAddressQueryHandler(GatedRegistrationContext db)
 {
     _db = db;
     _mapperConfiguration = new MapperConfiguration(cfg =>
     {
         cfg.AddProfile <InvitedUserProfile>();
     });
 }
 public AddUserToGatedRegistrationCommandHandler(GatedRegistrationContext db)
 {
     _db = db;
     _mapperConfiguration = new MapperConfiguration(cfg =>
     {
         cfg.AddProfile <InvitedUserDAOProfile>();
     });
 }
 public ValidateRegistrationCommandHandler(GatedRegistrationContext db, IMediator mediator)
 {
     _db                  = db;
     _mediator            = mediator;
     _mapperConfiguration = new MapperConfiguration(cfg =>
     {
         cfg.AddProfile <InvitedUserDAOProfile>();
     });
 }