Example #1
0
 public EnrollmentsController(ITransactionalDbService dbService,
                              IMapper <EnrollStudentRequest, Student> enrollStudentToStudentMapper,
                              IMapper <Enrollment, EnrollmentResponse> enrollmentToResponseMapper)
 {
     _dbService = dbService;
     _enrollStudentToStudentMapper = enrollStudentToStudentMapper;
     _enrollmentToResponseMapper   = enrollmentToResponseMapper;
 }
Example #2
0
 public PromotionsController(ITransactionalDbService dbService,
                             IMapper <Enrollment, EnrollmentResponse> enrollmentToResponseMapper)
 {
     _dbService = dbService;
     _enrollmentToResponseMapper = enrollmentToResponseMapper;
 }
Example #3
0
 public AuthController(ITransactionalDbService dbService, IConfiguration configuration)
 {
     _dbService    = dbService;
     Configuration = configuration;
 }