public void Buscar() { LibroBO oLibroBO = new LibroBO(); CtrlLibro oLibroCtrl = new CtrlLibro(); if (txtISBN.Text.Trim().Length != 0) { oLibroBO.ISBN = Convert.ToInt32(txtISBN.Text.Trim()); } if (txtAutor.Text.Trim().Length != 0) { oLibroBO.Autor = txtAutor.Text.Trim(); } if (txtNombre.Text.Trim().Length != 0) { oLibroBO.Titulo = txtNombre.Text.Trim(); } if (txtEditorial.Text.Trim().Length != 0) { oLibroBO.Editorial = txtEditorial.Text.Trim(); } if (txtPrecio.Text.Trim().Length != 0) { oLibroBO.Precio = Convert.ToInt32(txtPrecio.Text.Trim()); } dsReporte = oLibroCtrl.BusquedaLibro(oLibroBO); dgvAlumno.AutoGenerateColumns = false; dgvAlumno.DataSource = dsReporte.Tables[0]; }
public void BuscarLibro(LibroBO oLibroBO) { //AlumnoBO oAlumnoBO = new AlumnoBO(); CtrlLibro CtrlLibro = new CtrlLibro(); DataTable dt = CtrlLibro.BusquedaLibro(oLibroBO).Tables[0]; if (dt.Rows.Count != 0) { txtISBN.Text = dt.Rows[0]["ISBN"].ToString(); txtNombre.Text = dt.Rows[0]["Titulo"].ToString(); txtAutor.Text = dt.Rows[0]["Autor"].ToString(); txtEditorial.Text = dt.Rows[0]["Editorial"].ToString(); txtPrecio.Text = dt.Rows[0]["Precio"].ToString(); pbImagen.Image = this.AbrirImagen(dt.Rows[0]["Imagen"].ToString()); } else { this.Close(); } }