public DeleteFavoriteBookshelfCommandHandler( IGoogleBooksServiceFactory googleBooksServiceFactory, IApplicationDbContext applicationDbContext) { _booksService = googleBooksServiceFactory.GetBooksService(); _context = applicationDbContext; }
public GoogleBooksRepository( IGoogleBooksServiceFactory googleBooksServiceFactory, IMapper mapper) { _booksService = googleBooksServiceFactory.GetBooksService(); _mapper = mapper; }
public GetBookshelfQueryHandler( IGoogleBooksServiceFactory googleBooksServiceFactory, IMapper mapper) { _booksService = googleBooksServiceFactory.GetBooksService(); _mapper = mapper; }
public GetBookshelfsQueryHandler( IGoogleBooksServiceFactory googleBooksServiceFactory, IApplicationDbContext context, IMapper mapper) { _booksService = googleBooksServiceFactory.GetBooksService(); _context = context; _mapper = mapper; }