コード例 #1
0
 public UniversitiesController(
     IUniversitiesService universities,
     IStudentInfosService studentInfos,
     IMajorsService majors,
     IApplicationsService applications)
 {
     this.universities = universities;
     this.studentInfos = studentInfos;
     this.majors = majors;
     this.applications = applications;
 }
コード例 #2
0
 public MajorsController(IMajorsService majorsService)
 {
     this.MajorsService = majorsService;
 }
コード例 #3
0
 public StudentsController(IStudentInfosService students, IUniversitiesService universities, IMajorsService majors)
 {
     this.students = students;
     this.universities = universities;
     this.majors = majors;
 }
コード例 #4
0
 public ApplicationsController(IApplicationsService applications, IStudentInfosService studentInfos, IMajorsService majors)
 {
     this.applications = applications;
     this.studentInfos = studentInfos;
     this.majors = majors;
 }
コード例 #5
0
 public MajorsController(IMajorsService majors)
 {
     this.majors = majors;
 }
コード例 #6
0
 public ApplicationsController(IApplicationsService applications, IMajorsService majors)
 {
     this.applications = applications;
     this.majors = majors;
 }