Ejemplo n.º 1
0
 public ItemsController(IApplicationDbContext context, IBookFinder bookFinder, IUnitOfWork unitOfWork, IRawgGamesClient rawgGamesClient)
 {
     _context         = context;
     _bookFinder      = bookFinder;
     _unitOfWork      = unitOfWork;
     _rawgGamesClient = rawgGamesClient;
 }
Ejemplo n.º 2
0
 public Matcher(IBookFinder bookFinder, IOutputMessage messages)
 {
     _messages   = messages;
     _bookFinder = bookFinder;
 }
Ejemplo n.º 3
0
 public ItemsController(IUnitOfWork unitOfWork, IBookFinder bookFinder, IRawgGamesClient gamesClient)
 {
     _unitOfWork  = unitOfWork;
     _bookFinder  = bookFinder;
     _gamesClient = gamesClient;
 }
Ejemplo n.º 4
0
 public BookService(IRepository<Book> repository, IUnitOfWork unitOfWork, IBookFinder finder)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
     _finder = finder;
 }