private void btnEliminar_Click(object sender, EventArgs e) { try { EmpleadoBL empleado = new EmpleadoBL(); empleado.eliminar(Convert.ToInt32(txtIdEmp.Text)); } catch (Exception ex) { MessageBox.Show("Error" + ex.Message); } }
private void btnEliminar_Click(object sender, EventArgs e) { try { if (MessageBox.Show("¿Estás seguro que quiere eliminar este empleado del sistema?", "", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) { return; } else { EmpleadoBL empleado = new EmpleadoBL(); empleado.eliminar(Convert.ToInt32(this.dtgEmpleado.CurrentRow.Cells[0].Value.ToString())); this.EmpleadoUI_Load(sender, e); } } catch (Exception ex) { MessageBox.Show("Error" + ex.Message); } }