Exemple #1
0
 public StudentController(IStudentBusinessLogic studentbusiness, ISubjectbusinessLogic subjectbusiness,
                          IGuardianBusinessLogic guardianbusiness, ISchoolBusinessLogic schoolbusiness, IEnrollementBusinessLogic enrollementbusiness)
 {
     _studentbusiness     = studentbusiness;
     _subjectbusiness     = subjectbusiness;
     _guardianbusiness    = guardianbusiness;
     _schoolbusiness      = schoolbusiness;
     _enrollementbusiness = enrollementbusiness;
 }
Exemple #2
0
 public SubjectController(ISubjectbusinessLogic subjectbusiness)
 {
     _subjectbusiness = subjectbusiness;
 }