public ReportController(IMongoReportRepository mongoReportRepository, IReportGenerationService reportGenerationService, IDomoService domoService) { this.mongoReportRepository = mongoReportRepository; this.reportGenerationService = reportGenerationService; this.domoService = domoService; }
public ReportGenerationService(IDomoService domoService, IS3Service s3Service, IMongoReportGenerationRepository mongoReportGenerationRepository, IReportingCloudRepository reportingCloudRepository) { this.domoService = domoService; this.s3Service = s3Service; this.mongoReportGenerationRepository = mongoReportGenerationRepository; this.reportingCloudRepository = reportingCloudRepository; }
public DataSetController(IDomoService domoService) { this.domoService = domoService; }