public ReportGenerationService(IDomoService domoService,
                                IS3Service s3Service,
                                IMongoReportGenerationRepository mongoReportGenerationRepository,
                                IReportingCloudRepository reportingCloudRepository)
 {
     this.domoService = domoService;
     this.s3Service   = s3Service;
     this.mongoReportGenerationRepository = mongoReportGenerationRepository;
     this.reportingCloudRepository        = reportingCloudRepository;
 }
Esempio n. 2
0
 public ReportGenerationController(IMongoReportGenerationRepository mongoReportGenerationRepository)
 {
     this.mongoReportGenerationRepository = mongoReportGenerationRepository;
 }