public PostReportsController(
     IPostsService postsService,
     IPostReportsService postReportsService)
 {
     this.postsService       = postsService;
     this.postReportsService = postReportsService;
 }
 public PostReportsController(IPostReportsService postReportsService)
 => this.postReportsService = postReportsService;