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