public AdminService(IAdminRepository adminReposetry,
                     IPostService postService,
                     IAccountService accountService,
                     ICommentReportReposetory commentReportReposetory)
 {
     this.adminReposetry          = adminReposetry;
     this.postService             = postService;
     this.accountService          = accountService;
     this.commentReportReposetory = commentReportReposetory;
 }
 public PostService(IImageService imageServices,
                    IPostRepository postReposetry,
                    IAccountService accountService,
                    ICommentRepository commentReposetry,
                    ILikeRepository likeReposetry,
                    IAdminRepository adminRepository,
                    ICommentReportReposetory commentReportReposetory)
 {
     this.imageServices           = imageServices;
     this.postReposetry           = postReposetry;
     this.accountService          = accountService;
     this.commentReposetry        = commentReposetry;
     this.likeReposetry           = likeReposetry;
     this.adminRepository         = adminRepository;
     this.commentReportReposetory = commentReportReposetory;
 }