private void btnEliminar_Click(object sender, EventArgs e) { try { SucursalBL suc = new SucursalBL(); suc.Eliminar(Convert.ToInt32(txtId.Text)); } catch (Exception ex) { MessageBox.Show("ERROR" + ex.Message); } }
private void btnEliminar_Click(object sender, EventArgs e) { try { SucursalBL suc = new SucursalBL(); suc.Eliminar(Convert.ToInt32(this.dtgSucursal.CurrentRow.Cells[0].Value.ToString())); this.SucursalUI_Load(sender, e); } catch (Exception ex) { MessageBox.Show("ERROR" + ex.Message); } }
public bool Eliminar(int id) { return(SucursalBL.Eliminar(id)); }