public ReportCodeController(IAppMapper appMapper, IReportCodeDataService reportCodeDataService, IQualityReportManager qualityReportManager)
 {
     _appMapper             = appMapper;
     _reportCodeDataService = reportCodeDataService;
     _qualityReportManager  = qualityReportManager;
 }
 public QualityReportManager(IReportCodeDataService reportCodeDataService)
 {
     _reportCodeDataService = reportCodeDataService;
 }