public async Task<IActionResult> Edit(int id, [Bind("IdPagamento,FormaPagamento,Parcelas")] TbPagamento tbPagamento)
        {
            if (id != tbPagamento.IdPagamento)
            {
                return NotFound();
            }

            if (ModelState.IsValid)
            {
                try
                {
                    _context.Update(tbPagamento);
                    await _context.SaveChangesAsync();
                }
                catch (DbUpdateConcurrencyException)
                {
                    if (!TbPagamentoExists(tbPagamento.IdPagamento))
                    {
                        return NotFound();
                    }
                    else
                    {
                        throw;
                    }
                }
                return RedirectToAction(nameof(Index));
            }
            return View(tbPagamento);
        }
 public async Task<IActionResult> Create([Bind("IdPagamento,FormaPagamento,Parcelas")] TbPagamento tbPagamento)
 {
     if (ModelState.IsValid)
     {
         _context.Add(tbPagamento);
         await _context.SaveChangesAsync();
         return RedirectToAction(nameof(Index));
     }
     return View(tbPagamento);
 }