public CreativeService(IUnitOfWork repo, IChaptersService chapterServ, ITagsService tagServ, ICommentsService commentsServ) { db = repo; chapterService = chapterServ; tagsService = tagServ; commentsService = commentsServ; }
public ObjectiveEvaluator(IUserLessonsService userLessonsService, IObjectivesService objectivesService, IChaptersService chaptersService, ICoursesService coursesService, IMapper mapper) { this.userLessonsService = userLessonsService; this.objectivesService = objectivesService; this.chaptersService = chaptersService; this.coursesService = coursesService; this.mapper = mapper; }
public ChaptersController(IChaptersService service) { this.service = service; }