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; }
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; }