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