Example #1
0
 public SchoolController(ISchoolsService schoolsService, ISchoolYearsService schoolYearsService, ISemestersService semestersService, IConfiguration config, ICohortService cohortService, IGradeService gradeService)
 {
     _schoolsService     = schoolsService;
     _schoolYearsService = schoolYearsService;
     _semestersService   = semestersService;
     _gradeService       = gradeService;
     _cohortService      = cohortService;
     _config             = config;
 }
Example #2
0
 public SemestersController(ISemestersService semesters)
 {
     this.semesters = semesters;
 }
Example #3
0
 public SemestersController(ISemestersService semesters, IUsersService users)
 {
     this.semesters = semesters;
     this.users     = users;
 }
Example #4
0
 public SemestersController(ISemestersService semestersService)
 {
     this.semestersService = semestersService;
 }
 public SemestersController(IConfiguration config, ISemestersService service)
 {
     _config  = config;
     _service = service;
 }
Example #6
0
 public SemestersDropdownViewComponent(ISemestersService semesters)
 {
     this.semesters = semesters;
 }