public CourseService(IModuleService moduleService, ICoursesService moodleCoursesService, IMapper mapper)
 {
     _moduleService        = moduleService;
     _moodleCoursesService = moodleCoursesService;
     _mapper = mapper;
 }
Exemplo n.º 2
0
 public TaskResultService(IGradeService moodleGradeService, IModuleService moduleService, IMapper mapper)
 {
     _moodleGradeService = moodleGradeService;
     _moduleService      = moduleService;
     _mapper             = mapper;
 }