Exemple #1
0
 public StudentsController(IStudentService studentService, IParentService parentService, IGradeService gradeService, ISubjectService subjectService, IMarkService markService, IClassNumberService classNumberService)
 {
     this.studentService     = studentService;
     this.parentService      = parentService;
     this.gradeService       = gradeService;
     this.subjectService     = subjectService;
     this.markService        = markService;
     this.classNumberService = classNumberService;
 }
 public TeachersController(ITeacherService teacherService, ISubjectService subjectService, IClassNumberService classNumberService)
 {
     this.teacherService     = teacherService;
     this.subjectService     = subjectService;
     this.classNumberService = classNumberService;
 }
 public ClassNumberController(IClassNumberService classNumberService, ITeacherService teacherService)
 {
     this.classNumberService = classNumberService;
     this.teacherService     = teacherService;
 }
 public GradesController(IGradeService gradeService, ISubjectService subjectService, IClassNumberService classNumberService)
 {
     this.gradeService       = gradeService;
     this.subjectService     = subjectService;
     this.classNumberService = classNumberService;
 }