コード例 #1
0
 public AcademicsController(InfrastructureService infraService, StudentService studentService, InquiryService inquiryService, InstitutionService institutionService,
                            FeeService feeService, StudentProgramService studentprogramService)
 {
     this._infraService          = infraService;
     this._studentService        = studentService;
     this._inquiryService        = inquiryService;
     this._institutionService    = institutionService;
     this._feeService            = feeService;
     this._studentprogramService = studentprogramService;
 }
コード例 #2
0
 public FinanceController(FeeService feeService, StudentProgramInvoiceService studentprogramInvoiceService, StudentProgramService studentprogramService)
 {
     this._feeService = feeService;
     this._studentprogramInvoiceService = studentprogramInvoiceService;
     this._studentprogramService        = studentprogramService;
 }
コード例 #3
0
 public HomeController(StudentService studentService, StudentProgramInvoiceService studentprograminvoiceService, StudentProgramService studentProgramService)
 {
     this._studentService = studentService;
     this._studentprograminvoiceService = studentprograminvoiceService;
     this._studentProgramService        = studentProgramService;
 }