コード例 #1
0
ファイル: StudentController.cs プロジェクト: Buyani/Template
 public StudentController(IStudentBusinessLogic studentbusiness, ISubjectbusinessLogic subjectbusiness,
                          IGuardianBusinessLogic guardianbusiness, ISchoolBusinessLogic schoolbusiness, IEnrollementBusinessLogic enrollementbusiness)
 {
     _studentbusiness     = studentbusiness;
     _subjectbusiness     = subjectbusiness;
     _guardianbusiness    = guardianbusiness;
     _schoolbusiness      = schoolbusiness;
     _enrollementbusiness = enrollementbusiness;
 }
コード例 #2
0
 public StudentController()
 {
     bl = Service.Get <IStudentBusinessLogic>();
 }
コード例 #3
0
 public SessionController(ISessionBusinessLogic sessionBusinessLogic, IStudentBusinessLogic studentBusinessLogic)
 {
     _sessionBusinessLogic = sessionBusinessLogic;
     _studentBusinessLogic = studentBusinessLogic;
 }
コード例 #4
0
 public ValuesController(IStudentBusinessLogic studentbusinesslogic)
 {
     this.studentbusinesslogic = studentbusinesslogic;
 }
コード例 #5
0
 public PaymentController(IPaymentBusinessLogic paymentbusiness, IStudentBusinessLogic studentsbusiness)
 {
     _paymentbusiness  = paymentbusiness;
     _studentsbusiness = studentsbusiness;
 }