public CategoryRepository(BooksDbContext categoryContext)
 {
     _categoryContext = categoryContext;
 }
 public AuthorRepository(BooksDbContext authorContext)
 {
     _authorContext = authorContext;
 }
Esempio n. 3
0
 public BookRepository(BooksDbContext bookContext)
 {
     _bookContext = bookContext;
 }
Esempio n. 4
0
 public ReviewerRepository(BooksDbContext reviewerContext)
 {
     _reviewerContext = reviewerContext;
 }
 public CountryRepository(BooksDbContext countryContext)
 {
     _countryContext = countryContext;
 }