Exemplo n.º 1
0
 public ContaController(IContaAppService contaAppServiceInstance, IContaCategoriaAppService categoriaAppServiceInstance,
                        IContaCorrenteAppService correnteAppServiceInstance, IContatoAppService contatoAppServiceInstance)
 {
     this.contaApp     = contaAppServiceInstance;
     this.categoriaApp = categoriaAppServiceInstance;
     this.correnteApp  = correnteAppServiceInstance;
     this.contatoApp   = contatoAppServiceInstance;
     usuario           = AppHelper.ObterUsuarioLogado();
 }