Ejemplo n.º 1
0
 public StudentController(IUserService userService, IClassService classService, IStudentService studentService, IClassBookService classBookService)
 {
     this.userService      = userService;
     this.classService     = classService;
     this.studentService   = studentService;
     this.classBookService = classBookService;
 }
Ejemplo n.º 2
0
 public DashboardController(ISchoolService schoolService, IUserService userService,
                            IParentService parentService, IClassBookService classBookService, IScheduleService scheduleService)
 {
     this.userService      = userService;
     this.schoolService    = schoolService;
     this.parentService    = parentService;
     this.classBookService = classBookService;
     this.scheduleService  = scheduleService;
 }
Ejemplo n.º 3
0
 public ClassBookController(IClassBookService classBookService)
 {
     this.classBookService = classBookService;
 }