コード例 #1
0
 public CommandAllStudents(IStudentsCallback presenter, IStudentRepository repository)
 {
     _presenter  = presenter;
     _repository = repository;
 }
コード例 #2
0
 public IGetAllStudent GetCommandAllStudents(IStudentsCallback presenter, IStudentRepository repository)
 {
     return(new CommandAllStudents(presenter, repository));
 }