コード例 #1
0
 public AdminPostsService(BlogDbContext dbContext, IMapper mapper, IAuthorPostsService authorPostsService)
     : base(dbContext, mapper)
 {
     this.authorPostsService = authorPostsService;
 }
コード例 #2
0
 public PostsController(IAuthorPostsService postsService)
 {
     this.postsService = postsService;
 }