public async Task <ActionResult <FinLancamento> > PostLanItem(FinLancamento lancamento)
        {
            _context.FinLancamentoItens.Add(lancamento);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetLanItens", new FinLancamento {
                LanLancamentoId = lancamento.LanLancamentoId
            }, lancamento));
        }
        public async Task <ActionResult <CadOrganizacao> > PostOrgItem(CadOrganizacao organizacao)
        {
            _context.CadOrganizacaoItens.Add(organizacao);
            await _context.SaveChangesAsync();

            return(CreatedAtAction("GetOrgItem", new CadOrganizacao {
                OrgOrganizacaoId = organizacao.OrgOrganizacaoId
            }, organizacao));
        }