Пример #1
0
 public LessonController(ILessonService lessonService, ILessonStudentService lessonStudentService, IMapper mapper)
 {
     _lessonStudentService = lessonStudentService;
     _lessonService        = lessonService;
     _mapper = mapper;
 }
 public LessonStudentController(ILessonStudentService LessonStudentService)
 {
     _LessonStudentService = LessonStudentService;
 }