Ejemplo n.º 1
0
 public CommandAllStudents(IStudentsCallback presenter, IStudentRepository repository)
 {
     _presenter  = presenter;
     _repository = repository;
 }
Ejemplo n.º 2
0
 public IGetAllStudent GetCommandAllStudents(IStudentsCallback presenter, IStudentRepository repository)
 {
     return(new CommandAllStudents(presenter, repository));
 }