コード例 #1
0
 public EditBookCommandHandler(
     ICurrentUser currentUser,
     IBookDomainRepository bookRepository,
     IAuthorDomainRepository authorRepository)
 {
     this.currentUser      = currentUser;
     this.bookRepository   = bookRepository;
     this.authorRepository = authorRepository;
 }
コード例 #2
0
 public ChangeAvailabilityCommandHandler(
     ICurrentUser currentUser,
     IBookDomainRepository bookRepository,
     IAuthorDomainRepository authorRepository)
 {
     this.currentUser      = currentUser;
     this.bookRepository   = bookRepository;
     this.authorRepository = authorRepository;
 }