示例#1
0
        public async Task <ActionResult <IContaCorrente> > PostContaCorrente(ContaCorrente contaCorrente)
        {
            await _contaCorrenteService.SaveAsync(contaCorrente);

            return(CreatedAtAction("GetContaCorrente", new { id = contaCorrente.Id }, contaCorrente));
        }