Example #1
0
 public ReportController(ILogger <ReportController> logger, IReportGeneratorSettings reportGeneratorSettings,
                         IBillingApiService billingApiService, ICustomerApiService customerApiService)
 {
     _logger = logger;
     _reportGeneratorSettings = reportGeneratorSettings;
     _billingApiService       = billingApiService;
     _customerApiService      = customerApiService;
 }
Example #2
0
 public StateBillingReportManager(int month, IReportGeneratorSettings reportGeneratorSettings,
                                  IBillingApiService billingApiService, ICustomerApiService customerApiService)
 {
     _stateBillingReport = new StateBillingReport()
     {
         Month = month
     };
     _billingApiService       = billingApiService;
     _customerApiService      = customerApiService;
     _reportGeneratorSettings = reportGeneratorSettings;
 }