private void BuscarButton_Click(object sender, RoutedEventArgs e) { Productos anterior = ProductosBll.Buscar(Convert.ToInt32(ProductoIdTextBox.Text)); if (anterior != null) { productos = anterior; Actualizar(); } else { MessageBox.Show("No Encontrado"); } }
protected void BuscarButton_Click(object sender, EventArgs e) { int id = Utilidades.ToInt(IdProductoTextBox.Text); Productos productos = ProductosBll.Buscar(u => u.IdProductos == id); if (productos != null) { DescripcionTextBox.Text = productos.Descripcion; CantidadTextBox.Text = productos.Cantidad.ToString(); PrecioTextBox.Text = productos.Precio.ToString(); FechaTextBox.Text = productos.FechaCreacion.ToString(); Utilidades.ShowToastr(this, "Si Existe", "Producto Encontrado", "Success"); } else { Utilidades.ShowToastr(this, "No Existe", "Ingresar Producto Existente", "warning"); } }
protected void EliminarButton_Click(object sender, EventArgs e) { int id = Utilidades.ToInt(IdProductoTextBox.Text); Productos producto = ProductosBll.Buscar(p => p.IdProductos == id); if (producto != null) { if (producto.IdProductos != 1) { ProductosBll.Eliminar(producto); Utilidades.ShowToastr(this, "El Producto", " Se Elimino Correctamente", "Success"); Limpiar(); } else { Utilidades.ShowToastr(this, "El Producto", "No Se Elimino", "warning"); } } }
private void BuscarProducto() { if (!string.IsNullOrEmpty(IdProductoTextBox.Text)) { int id = Utilidades.ToInt(IdProductoTextBox.Text); producto = ProductosBll.Buscar(p => p.IdProductos == id); if (producto != null) { DescripcionTextBox.Text = producto.Descripcion; PrecioTextBox.Text = producto.Precio.ToString(); CantidadTextBox.Enabled = true; CantidadTextBox.Focus(); } else { IdProductoTextBox.Text = ""; DescripcionTextBox.Text = ""; PrecioTextBox.Text = ""; CantidadTextBox.Text = ""; } } }
private bool Existe() { Productos productoA = ProductosBll.Buscar(productos.ProductoId); return(productos != null); }