private void Eliminarbutton_Click_1(object sender, EventArgs e) { SupererrorProvider.Clear(); int id; int.TryParse(IDnumericUpDown.Text, out id); if (LibroBLL.Eliminar(id)) { MessageBox.Show("Eliminado"); } else { SupererrorProvider.SetError(IDnumericUpDown, "No se puede eliminar un libro que no existe"); } }
private void Buscarbutton_Click_1(object sender, EventArgs e) { SupererrorProvider.Clear(); int id; Libro libro = new Libro(); int.TryParse(IDnumericUpDown.Text, out id); libro = LibroBLL.Buscar(id); if (libro != null) { MessageBox.Show("Libro Encontrado"); LlenaCampo(libro); } else { MessageBox.Show("Persona no encontrada"); } }
private void Guardarbutton_Click_1(object sender, EventArgs e) { SupererrorProvider.Clear(); int id; int.TryParse(IDnumericUpDown.Text, out id); Libro Libro = LibroBLL.Buscar(id); Libro libro = Llenaclase(); if (libro == null) { if (GuardarValidar()) { if (LibroBLL.Guardar(libro)) { MessageBox.Show("Libro guardado"); } else { MessageBox.Show("Libro no guardado"); } } } else { if (GuardarValidar()) { if (LibroBLL.Modificar(libro)) { MessageBox.Show("Persona modificada"); } else { MessageBox.Show("Persona no modificada"); } } } }