Exemplo n.º 1
0
 public BookService(IHbrDbContext context, IMapper mapper, IGoodReadsApiService goodReadsService, ITimeService timeService)
 {
     _context          = context;
     _mapper           = mapper;
     _goodReadsService = goodReadsService;
     _timeService      = timeService;
 }
Exemplo n.º 2
0
 public AccountController(IHbrDbContext hbrDbContext)
 {
     _context = hbrDbContext;
 }
Exemplo n.º 3
0
 public GenreService(IHbrDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemplo n.º 4
0
 public BookmarkService(IHbrDbContext context, IMapper mapper, ITimeService timeService)
 {
     _context     = context;
     _mapper      = mapper;
     _timeService = timeService;
 }