public StudentServiceBusiness(IPersonDAOService personDAOService, IStudentDAOService studentDAOService)
 {
     _personDAOService  = personDAOService;
     _studentDAOService = studentDAOService;
 }
Пример #2
0
 public StudentController(IStudentDAOService studentService, IStudentService studentBusinessService)
 {
     _studentService         = studentService;
     _studentBusinessService = studentBusinessService;
 }