public CreditInvestigationController(ILoanApplicationSvc loanApplicationSvc, ICustomerSvc customerSvc, ICreditInvestigation crdService)
 {
     this.loanService     = loanApplicationSvc;
     this.customerService = customerSvc;
     this.crdService      = crdService;
 }
Ejemplo n.º 2
0
 public ApplicationController(ILoanApplicationSvc loanApplicationSvc, ICustomerSvc customerSvc)
 {
     this.service      = loanApplicationSvc;
     this.customerComp = customerSvc;
 }