Exemple #1
0
 public ReviewerRepository(BookDbContext reviewerContext)
 {
     _reviewerContext = reviewerContext;
 }
 public CountryRepository(BookDbContext countryContext)
 {
     _countryContext = countryContext;
 }
Exemple #3
0
 public BookRepository(BookDbContext bookDbContext)
 {
     _bookDbContext = bookDbContext;
 }
Exemple #4
0
 public AuthorRepository(BookDbContext authorContext)
 {
     _authorContext = authorContext;
 }
 public CategoryRepository(BookDbContext categoryContext)
 {
     _categoryContext = categoryContext;
 }