コード例 #1
0
 public CustomerPaymentController(ICustomerPayment customerPaymentComponent, ICustomer customerComponent, ICustomerInvoice customerInvoiceComponent)
 {
     _customerPaymentComponent = customerPaymentComponent;
     _customerComponent        = customerComponent;
     _customerInvoiceComponent = customerInvoiceComponent;
 }
コード例 #2
0
 public CustomerInvoiceController(ICustomerInvoice customerInvoiceComponent, ICustomer customerComponent)
 {
     _customerInvoiceComponent = customerInvoiceComponent;
     _customerComponent = customerComponent;
 }