コード例 #1
0
 public SalvaTransacaoService(
     IGastoService gastoService,
     IContaRepository contaRepository,
     ICategoriaRepository categoriaRepository,
     IRecebimentoService recebimentoService)
 {
     this.gastoService        = gastoService;
     this.contaRepository     = contaRepository;
     this.categoriaRepository = categoriaRepository;
     this.recebimentoService  = recebimentoService;
 }
コード例 #2
0
 public RecebimentoApplication(IRecebimentoService recebimentoService)
 {
     _recebimentoService = recebimentoService;
 }