コード例 #1
0
 public PaymentInfoController(
     IPaymentInfoService paymentInfoService,
     ISupplierLedgerService supplierLedgerService,
     ICustomerLedgerService customerLedgerService
     )
 {
     _paymentInfoService    = paymentInfoService;
     _supplierLedgerService = supplierLedgerService;
     _customerLedgerService = customerLedgerService;
 }
コード例 #2
0
 public SupplierLedgerController(
     ISupplierLedgerService supplierLedgerService,
     ICompanyService companyService,
     IBranchService branchService,
     ISupplierService supplierService,
     IRawSqlService rawSqlService
     )
 {
     _supplierLedgerService = supplierLedgerService;
     _companyService        = companyService;
     _branchService         = branchService;
     _supplierService       = supplierService;
     _rawSqlService         = rawSqlService;
 }