Example #1
0
 public CreativeService(IUnitOfWork repo, IChaptersService chapterServ,
                        ITagsService tagServ, ICommentsService commentsServ)
 {
     db              = repo;
     chapterService  = chapterServ;
     tagsService     = tagServ;
     commentsService = commentsServ;
 }
Example #2
0
        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;
        }
Example #3
0
 public ChaptersController(IChaptersService service)
 {
     this.service = service;
 }