public FetchArchivedReportsQuery(IReadOnlyReportService reportService, IMapper mapper,
                                  IHttpContextWriter httpContextWriter)
 {
     this.reportService     = reportService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
예제 #2
0
 public ReportValidationHub(IReportValidationService reportValidationService,
                            IReadOnlyReportService reportService, IHttpContextReader httpContextReader)
 {
     this.reportValidationService = reportValidationService;
     this.reportService           = reportService;
     this.httpContextReader       = httpContextReader;
 }
 public FetchAllReportsQuery(IReadOnlyReportService reportService,
                             IReportValidationService reportValidationService, IMapper mapper, IHttpContextWriter httpContextWriter)
 {
     this.reportService           = reportService;
     this.reportValidationService = reportValidationService;
     this.mapper            = mapper;
     this.httpContextWriter = httpContextWriter;
 }
예제 #4
0
 public GetReportQuery(IReadOnlyReportService reportService, IMapper mapper)
 {
     this.reportService = reportService;
     this.mapper        = mapper;
 }