Ejemplo n.º 1
0
 public ReviewerRepository(BookDbContext reviewerContext)
 {
     _reviewerContext = reviewerContext;
 }
Ejemplo n.º 2
0
 public CountryRepository(BookDbContext countryContext)
 {
     _countryContext = countryContext;
 }
Ejemplo n.º 3
0
 public BookRepository(BookDbContext bookDbContext)
 {
     _bookDbContext = bookDbContext;
 }
Ejemplo n.º 4
0
 public AuthorRepository(BookDbContext authorContext)
 {
     _authorContext = authorContext;
 }
Ejemplo n.º 5
0
 public CategoryRepository(BookDbContext categoryContext)
 {
     _categoryContext = categoryContext;
 }