Пример #1
0
 public AuthorController(IRepository <Author> bookRepository)
 {
     this.bookRepository = bookRepository;
 }
Пример #2
0
 public BooksController(IRepository <Book> bookRepository, IRepository <Author> authorRepository, IHostingEnvironment hosting)
 {
     this.bookRepository   = bookRepository;
     this.authorRepository = authorRepository;
     this.Hosting          = hosting;
 }