private void btnEditar_Click(object sender, EventArgs e) { FormCadastrarCliente alterar = new FormCadastrarCliente(); if (dgvClientes.CurrentRow != null) { alterar.cliente = ClienteServices.ObterPorId(Convert.ToInt32(dgvClientes.CurrentRow.Cells[0].Value)); if (alterar.ShowDialog() == DialogResult.OK) { if (ClienteServices.Alterar(alterar.cliente)) { MessageBox.Show("Alteração realizada com sucesso!", "chronOS", MessageBoxButtons.OK, MessageBoxIcon.Information); AtualizarGrid(); Contar(); } else { MessageBox.Show("Não foi possível realizar a alteração no momento!", "chronOS", MessageBoxButtons.OK, MessageBoxIcon.Information); } } } }
public IActionResult Alterar(Cliente cliente) { service.Alterar(cliente); return(RedirectToAction("lista")); }