Esempio n. 1
0
 public PublisherService(IBookRankingDbContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
Esempio n. 2
0
 public BaseService(IBookRankingDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Esempio n. 3
0
 public AuthorService(IBookRankingDbContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }
Esempio n. 4
0
 public BookService(IAuthorService authorService, IPublisherService publisherService, IBookRankingDbContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
     this.authorService    = authorService;
     this.publisherService = publisherService;
 }