public ReviewRepository(BookDBContext reviewContext)
 {
     _reviewContext = reviewContext;
 }
 public AuthorRepository(BookDBContext authorContext)
 {
     _authorContext = authorContext;
 }
 public BookRepository(BookDBContext bookDbContext)
 {
     _bookDbContext = bookDbContext;
 }
Exemplo n.º 4
0
 public CountryRepository(BookDBContext countryContext)
 {
     _countryContext = countryContext;
 }
 public CategoryRepository(BookDBContext categoryContext)
 {
     _categoryContext = categoryContext;
 }