public ReviewerRepository(BookDbContext reviewerContext) { _reviewerContext = reviewerContext; }
public CountryRepository(BookDbContext countryContext) { _countryContext = countryContext; }
public BookRepository(BookDbContext bookDbContext) { _bookDbContext = bookDbContext; }
public AuthorRepository(BookDbContext authorContext) { _authorContext = authorContext; }
public CategoryRepository(BookDbContext categoryContext) { _categoryContext = categoryContext; }