public AcademyController(IGameCoursesService courses, ICoursePlansService objectives, IGameLessonsService lessons)
 {
     this.courses = courses;
     this.plans   = objectives;
     this.lessons = lessons;
 }
Example #2
0
 public HomeController(ICacheService cacheService, IGameCoursesService courseService, ITutorialService tutorialService)
 {
     this.cacheService    = cacheService;
     this.courseService   = courseService;
     this.tutorialService = tutorialService;
 }
 public GameCourseController(IGameCoursesService courses, IUsersService users)
 {
     this.courses = courses;
     this.users   = users;
 }