public EmprestimoAmigoTituloBusiness(IEmprestimoData emprestimoData)
 {
     _emprestimoData = emprestimoData;
 }
 public HomeController(IEmprestimoData emprestimoData)
 {
     this.emprestimoData = emprestimoData;
 }
 public EmprestimoBusiness(IEmprestimoData emprestimoData, IAmigoBusiness amigoBusiness, ITituloBusiness tituloBusiness)
 {
     _emprestimoData = emprestimoData;
     _amigoBusiness  = amigoBusiness;
     _tituloBusiness = tituloBusiness;
 }