コード例 #1
0
ファイル: ObjectiveEvaluator.cs プロジェクト: Szerpentin/Mimo
        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;
        }
コード例 #2
0
 public UserLessonsController(IUserLessonsService userLessonsService, IMapper mapper)
 {
     this.userLessonsService = userLessonsService;
     this.mapper             = mapper;
 }