Example #1
0
        public async Task CreateSuccessContaCorrente()
        {
            await _lancamentoService.CreateLancamento(_lancamento);

            Assert.True(true);
        }
Example #2
0
 public async Task <Lancamento> CreateLancamento(Lancamento lancamento)
 {
     return(await _lancamentoService.CreateLancamento(lancamento));
 }