public CollegeService(IAllDepartments allDepartments, IAllStudent allStudent, IStudentAndDepartment studentAndDepartment, ICrudStudent crudStudent, ICrudDepartment crudDepartment)
 {
     this.allDepartments       = allDepartments;
     this.allStudent           = allStudent;
     this.studentAndDepartment = studentAndDepartment;
     this.crudStudent          = crudStudent;
     this.crudDepartment       = crudDepartment;
 }
Example #2
0
 public Jobs(IServiceMedia serviceMedia, ICrudStudent crudStudent)
 {
     _serviceMedia = serviceMedia;
     _crudStudent  = crudStudent;
 }