private void ButtonNuevo_Click(object sender, EventArgs e) { FrmEquipoEdicion alta = new FrmEquipoEdicion(oEquipoService, FrmEquipoEdicion.ABMFormMode.insert); alta.ShowDialog(); dgvEquipos.Rows.Clear(); }
private void ButtonModificar_Click(object sender, EventArgs e) { if (dgvEquipos.CurrentRow == null) { MessageBox.Show("Seleccione un registro"); } else { oEquipoService.IdEquipoSelected = Int32.Parse(dgvEquipos.CurrentRow.Cells["IdEquipo"].Value.ToString()); FrmEquipoEdicion alta = new FrmEquipoEdicion(oEquipoService, FrmEquipoEdicion.ABMFormMode.update); alta.ShowDialog(); dgvEquipos.Rows.Clear(); } }