private void btnBuscar_Click(object sender, EventArgs e) { if (txtBuscar.Text.Equals("")) { MessageBox.Show("Campo vacio no Dijito nada"); } else { limpiar(); controlador.CrudCliente client = new controlador.CrudCliente(); client.selecClien(2, txtBuscar.Text, dataCliente); if (this.accion.Equals(4)) { } else { btnActualizar.Enabled = true; btnEliminar.Enabled = true; } } }
public void todos() { controlador.CrudCliente client = new controlador.CrudCliente(); client.selecClien(1, "n", dataCliente); }