コード例 #1
0
        protected void btnEliminar_Click(object sender, EventArgs e)
        {
            try
            {
                CapaNegocio.Producto a = new Producto();
                a.Id_producto = Convert.ToInt32(txtID.Text);
                if (a.buscarProducto())
                {
                    a.eliminarProducto();
                    lblMensaje.Text = "Producto Eliminado";
                    limpiar();
                    cargarDDL();
                }
                else
                {
                    lblMensaje.Text = "Producto no existe";
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error :" + ex.Message);
                lblMensaje.Text = "Error al borrar ";

                cargarDDL();
            }
        }
コード例 #2
0
 protected void btnAgregar_Click(object sender, EventArgs e)
 {
     try
     {
         CapaNegocio.Producto a = new Producto();
         a.Id_producto = Convert.ToInt32(txtID.Text);
         if (!a.buscarProducto())
         {
             a.Id_producto     = Convert.ToInt32(txtID.Text);
             a.Nombre_producto = txtNombre.Text;
             a.Marca_producto  = txtMarca.Text;
             a.Precio_producto = Convert.ToInt32(txtPrecio.Text);
             a.Stock_producto  = Convert.ToInt32(txtStock.Text);
             a.Id_min          = Convert.ToInt32(DDLMini.SelectedValue.ToString());
             a.crearProducto();
         }
     }
     catch (Exception ex)
     {
         Console.WriteLine("Error :" + ex.Message);
     }
 }