public HomeworkController(IHomeworkService homeworkService, IMapperPL mapper) { _db = homeworkService; _mapper = mapper.CreateMapper(); }
public StudentController(IStudentService studentService, IMapperPL mapper) { _db = studentService; _mapper = mapper.CreateMapper(); }
public LectureController(ILectureService lectureService, IMapperPL mapper) { _db = lectureService; _mapper = mapper.CreateMapper(); }
public ProfessorController(IProfessorService professorService, IMapperPL mapper) { _db = professorService; _mapper = mapper.CreateMapper(); }