public UniversitiesController(
     IUniversitiesService universities,
     IStudentInfosService studentInfos,
     IMajorsService majors,
     IApplicationsService applications)
 {
     this.universities = universities;
     this.studentInfos = studentInfos;
     this.majors = majors;
     this.applications = applications;
 }
 public MajorsController(IMajorsService majorsService)
 {
     this.MajorsService = majorsService;
 }
 public StudentsController(IStudentInfosService students, IUniversitiesService universities, IMajorsService majors)
 {
     this.students = students;
     this.universities = universities;
     this.majors = majors;
 }
 public ApplicationsController(IApplicationsService applications, IStudentInfosService studentInfos, IMajorsService majors)
 {
     this.applications = applications;
     this.studentInfos = studentInfos;
     this.majors = majors;
 }
 public MajorsController(IMajorsService majors)
 {
     this.majors = majors;
 }
 public ApplicationsController(IApplicationsService applications, IMajorsService majors)
 {
     this.applications = applications;
     this.majors = majors;
 }