private void btnEliminar_Click(object sender, EventArgs e) { int rowindex = dgvDatos.CurrentCell.RowIndex; var id = (int)dgvDatos.Rows[rowindex].Cells[0].Value; var cta = CuentasRepository.ObtenerCuentaPorId(id); if (MessageBox.Show(String.Format("¿Está seguro de que desea eliminar {0}?", cta.Descripcion), "Eliminar Cuenta", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes) { try { CuentasRepository.Eliminar(cta.Id); ConsultarDatos(); } catch (Exception ex) { CustomMessageBox.ShowError(ex.Message); } } }
private void btnEditar_Click(object sender, EventArgs e) { int rowindex = dgvDatos.CurrentCell.RowIndex; var id = (int)dgvDatos.Rows[rowindex].Cells[0].Value; var cta = CuentasRepository.ObtenerCuentaPorId(id); using (var f = new frmEdición(cta)) { if (f.ShowDialog() == DialogResult.OK) { try { CuentasRepository.Actualizar(cta.Id, f.Descripción, f.Estado, f.SaldoInicial); ConsultarDatos(); } catch (Exception ex) { CustomMessageBox.ShowError(ex.Message); } dgvDatos.SetRow(r => Int32.Parse(r.Cells[0].Value.ToString()) == cta.Id); } } }