Пример #1
0
 public BookController(IBookstoreRepoository <formular> bookrepository, IBookstoreRepoository <Author> authorrepository, IHostEnvironment hosting)
 {
     this.bookrepository   = bookrepository;
     this.authorrepository = authorrepository;
     this.hosting          = hosting;
 }
Пример #2
0
 public AuthorController(IBookstoreRepoository <Author> authorRepository)
 {
     this.authorRepository = authorRepository;
 }