Beispiel #1
0
 public AddBookAuthorConnectionToCatalogEventHandler(IBookAuthorCatalogRepository bookAuthorCatalogRepository)
 {
     this.bookAuthorCatalogRepository = bookAuthorCatalogRepository;
 }
 public DeleteBookAuthorCommandHandler(IBookAuthorCatalogRepository bookAuthorCatalogRepository)
 {
     this.bookAuthorCatalogRepository = bookAuthorCatalogRepository;
 }
Beispiel #3
0
 public AddBookAuthorCommandHandler(IBookRepository bookRepository, IAuthorRepository authorRepository, IBookAuthorCatalogRepository bookAuthorCatalogRepository)
 {
     this.bookRepository              = bookRepository;
     this.authorRepository            = authorRepository;
     this.bookAuthorCatalogRepository = bookAuthorCatalogRepository;
 }