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