コード例 #1
0
 public DeleteFavoriteBookshelfCommandHandler(
     IGoogleBooksServiceFactory googleBooksServiceFactory,
     IApplicationDbContext applicationDbContext)
 {
     _booksService = googleBooksServiceFactory.GetBooksService();
     _context      = applicationDbContext;
 }
コード例 #2
0
 public GoogleBooksRepository(
     IGoogleBooksServiceFactory googleBooksServiceFactory,
     IMapper mapper)
 {
     _booksService = googleBooksServiceFactory.GetBooksService();
     _mapper       = mapper;
 }
コード例 #3
0
 public GetBookshelfQueryHandler(
     IGoogleBooksServiceFactory googleBooksServiceFactory,
     IMapper mapper)
 {
     _booksService = googleBooksServiceFactory.GetBooksService();
     _mapper       = mapper;
 }
コード例 #4
0
 public GetBookshelfsQueryHandler(
     IGoogleBooksServiceFactory googleBooksServiceFactory,
     IApplicationDbContext context,
     IMapper mapper)
 {
     _booksService = googleBooksServiceFactory.GetBooksService();
     _context      = context;
     _mapper       = mapper;
 }
コード例 #5
0
 public ISearchBooksQueryHandler(IGoogleBooksServiceFactory googleBookApi)
 {
     _googleBookApi = googleBookApi;
 }