Пример #1
0
 public GetSubjectByIdQueryHandler(
     IMapper mapper,
     ISubjectService subjectService,
     IEntityMapperService <LectureResponseModel> entityMapperService)
 {
     _mapper              = mapper;
     _subjectService      = subjectService;
     _entityMapperService = entityMapperService;
 }
 public GetSubjectsQueryHandler(
     IMapper mapper,
     IEntityMapperService <SubjectResponseModel> subjectMapperService,
     ISubjectService subjectService)
 {
     _mapper = mapper;
     _subjectMapperService = subjectMapperService;
     _subjectService       = subjectService;
 }
Пример #3
0
 public GetEnrollmentsByStudentIdQueryHandler(
     IMapper mapper,
     IStudentService studentService,
     ISubjectService subjectService,
     IEntityMapperService <LectureResponseModel> lectureEntityMapperService)
 {
     _mapper                     = mapper;
     _studentService             = studentService;
     _subjectService             = subjectService;
     _lectureEntityMapperService = lectureEntityMapperService;
 }
 public CreateLectureCommandHandler(
     IMapper mapper,
     ISubjectService subjectService,
     ILectureTheatreService lectureTheatreService,
     IEntityMapperService <LectureResponseModel> entityMapperService)
 {
     _mapper                = mapper;
     _subjectService        = subjectService;
     _lectureTheatreService = lectureTheatreService;
     _entityMapperService   = entityMapperService;
 }
 public SubjectEntityMapperService(
     IEntityMapperService <LectureResponseModel> lectureMapperService)
 {
     _lectureMapperService = lectureMapperService;
 }