public CustomerPaymentController(ICustomerPayment customerPaymentComponent, ICustomer customerComponent, ICustomerInvoice customerInvoiceComponent)
 {
     _customerPaymentComponent = customerPaymentComponent;
     _customerComponent        = customerComponent;
     _customerInvoiceComponent = customerInvoiceComponent;
 }
 public CustomerInvoiceController(ICustomerInvoice customerInvoiceComponent, ICustomer customerComponent)
 {
     _customerInvoiceComponent = customerInvoiceComponent;
     _customerComponent = customerComponent;
 }