public PublisherService(IBookRankingDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public BaseService(IBookRankingDbContext dbContext, IMapper mapper) { this.dbContext = dbContext; this.mapper = mapper; }
public AuthorService(IBookRankingDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { }
public BookService(IAuthorService authorService, IPublisherService publisherService, IBookRankingDbContext dbContext, IMapper mapper) : base(dbContext, mapper) { this.authorService = authorService; this.publisherService = publisherService; }