public AdminPostsService(BlogDbContext dbContext, IMapper mapper, IAuthorPostsService authorPostsService)
     : base(dbContext, mapper)
 {
     this.authorPostsService = authorPostsService;
 }
 public PostsController(IAuthorPostsService postsService)
 {
     this.postsService = postsService;
 }