public StudentServiceBusiness(IPersonDAOService personDAOService, IStudentDAOService studentDAOService) { _personDAOService = personDAOService; _studentDAOService = studentDAOService; }
public StudentController(IStudentDAOService studentService, IStudentService studentBusinessService) { _studentService = studentService; _studentBusinessService = studentBusinessService; }