public PostReportController(IAccountService accountService, IPostService postService, IPostReportService postReportService, IPaggingService paggingService)
     : base(accountService)
 {
     this.postService       = postService;
     this.postReportService = postReportService;
     this.paggingService    = paggingService;
 }
        public ReplyReportServiceTests(BaseUnitTest fixture)
        {
            this.dbService = fixture.Provider.GetService(typeof(IDbService)) as IDbService;

            this.mapper = fixture.Provider.GetService(typeof(IMapper)) as IMapper;

            this.postReportService = fixture.Provider.GetService(typeof(IPostReportService)) as IPostReportService;

            this.SeedDb();
        }