public CategoryRepository(BookApiDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #2
0
 public AuthorRepository(BookApiDbContext authorContext, IMapper mapper)
 {
     _authorContext = authorContext;
     _mapper        = mapper;
 }
Exemple #3
0
 public ReviewerRepository(BookApiDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public BookRepository(BookApiDbContext bookContext, IMapper mapper)
 {
     _bookContext = bookContext;
     _mapper      = mapper;
 }
 public ReviewRepository(BookApiDbContext reviewContext, IMapper mapper)
 {
     _reviewContext = reviewContext;
     _mapper        = mapper;
 }
Exemple #6
0
 public CountryRepository(BookApiDbContext countryContext, IMapper mapper)
 {
     _countryContext = countryContext;
     _mapper         = mapper;
 }