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