Beispiel #1
0
 public LoanController(IRepositoryLoan repositoryLoan, LoanHandler loanHandler, IRepositoryClient repositoryClient)
 {
     _repositoryLoan   = repositoryLoan;
     _loanHandler      = loanHandler;
     _repositoryClient = repositoryClient;
 }
Beispiel #2
0
 public HomeController(IRepositoryClient repositoryClient, IRepositoryLoan repositoryLoan, IRepositoryParcela repositoryParcela)
 {
     _repositoryClient  = repositoryClient;
     _repositoryLoan    = repositoryLoan;
     _repositoryParcela = repositoryParcela;
 }
Beispiel #3
0
 public Business(IRepositoryAuthentication iauth, IRepositoryBanking ibank, IRepositoryLoan iloan)
 {
     _iauth = iauth;
     _ibank = ibank;
     _iloan = iloan;
 }