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