Esempio n. 1
0
 public ItemsController(IApplicationDbContext context, IBookFinder bookFinder, IUnitOfWork unitOfWork, IRawgGamesClient rawgGamesClient)
 {
     _context         = context;
     _bookFinder      = bookFinder;
     _unitOfWork      = unitOfWork;
     _rawgGamesClient = rawgGamesClient;
 }
Esempio n. 2
0
 public ItemsController(IUnitOfWork unitOfWork, IBookFinder bookFinder, IRawgGamesClient gamesClient)
 {
     _unitOfWork  = unitOfWork;
     _bookFinder  = bookFinder;
     _gamesClient = gamesClient;
 }
Esempio n. 3
0
 public ShelvesController(IUnitOfWork unitOfWork, IRawgGamesClient rawgGamesClient)
 {
     _unitOfWork      = unitOfWork;
     _rawgGamesClient = rawgGamesClient;
 }