public HomeController(IStudentCourseInstancesService studentCourseInstancesService,
                       IStudentsService studentsService,
                       IBlogArticleService blogArticleService)
 {
     this.studentCourseInstancesService = studentCourseInstancesService;
     this.studentsService    = studentsService;
     this.blogArticleService = blogArticleService;
 }
 public PaymentsController(
     IStudentPaymentsService studentPaymentsService,
     IStudentCoursesService studentCoursesService,
     IStudentCourseInstancesService studentCourseInstancesService)
 {
     this.studentPaymentsService        = studentPaymentsService;
     this.studentCoursesService         = studentCoursesService;
     this.studentCourseInstancesService = studentCourseInstancesService;
 }
Exemplo n.º 3
0
 public CoursesController(IStudentCoursesService adminCoursesService,
                          IStudentCourseInstancesService studentCourseInstancesService)
 {
     this.studentCoursesService         = adminCoursesService;
     this.studentCourseInstancesService = studentCourseInstancesService;
 }
Exemplo n.º 4
0
 public CoursesController(IStudentCourseInstancesService coursesService)
 {
     this.coursesService = coursesService;
 }