Exemple #1
0
 public ReportController(ILogger <ReportController> logger, IReportGeneratorSettings reportGeneratorSettings,
                         IBillingApiService billingApiService, ICustomerApiService customerApiService)
 {
     _logger = logger;
     _reportGeneratorSettings = reportGeneratorSettings;
     _billingApiService       = billingApiService;
     _customerApiService      = customerApiService;
 }
Exemple #2
0
 public CustomerBillingGeneratorWorker(
     ILogger <CustomerBillingGeneratorWorker> logger,
     ICustomerBillingGeneratorSettings customerBillingGeneratorSettings,
     IBillingApiService billingApiService, ICustomerApiService customerApiService)
 {
     _logger = logger;
     _customerBillingGeneratorSettings = customerBillingGeneratorSettings;
     _customerApiService = customerApiService;
     _billingApiService  = billingApiService;
 }
Exemple #3
0
 public StateBillingReportManager(int month, IReportGeneratorSettings reportGeneratorSettings,
                                  IBillingApiService billingApiService, ICustomerApiService customerApiService)
 {
     _stateBillingReport = new StateBillingReport()
     {
         Month = month
     };
     _billingApiService       = billingApiService;
     _customerApiService      = customerApiService;
     _reportGeneratorSettings = reportGeneratorSettings;
 }
Exemple #4
0
 public BillingController(IBillingApiService service)
 {
     this.service = service;
 }
 public BillingApiServiceTests()
 {
     _fixture = new BillingApiService(configuration);
 }