public CustomerService(ICustomerRepository customerRepository, ICustomerLedgerRepository customerLedgerRepository, ICustomerLedgerService customerLedgerService) { CustomerRepository = customerRepository; CustomerLedgerRepository = customerLedgerRepository; CustomerLedgerService = customerLedgerService; }
public CustomerLedgerController( ICustomerLedgerService customerLedgerService, ICustomerService customerService, IRawSqlService rawSqlService ) { _customerLedgerService = customerLedgerService; _customerService = customerService; _rawSqlService = rawSqlService; }
public PaymentInfoController( IPaymentInfoService paymentInfoService, ISupplierLedgerService supplierLedgerService, ICustomerLedgerService customerLedgerService ) { _paymentInfoService = paymentInfoService; _supplierLedgerService = supplierLedgerService; _customerLedgerService = customerLedgerService; }