Exemple #1
0
 public CommandStudentByID(IStudentCallback presenter, IStudentRepository repository)
 {
     _presenter  = presenter;
     _repository = repository;
 }
Exemple #2
0
 public IGetStudentByID GetCommandStudentByID(IStudentCallback presenter, IStudentRepository repository)
 {
     return(new CommandStudentByID(presenter, repository));
 }