private void button2_Click(object sender, EventArgs e) { Producto producto = new Producto("Mouse", Convert.ToDecimal(5.5), 2); int result = AdminProducto.Crear(producto); if (result > 0) { MessageBox.Show("OK"); ShowAllProducts(); } else { MessageBox.Show("Fallo"); } }
protected void lblInsertarProducto_Click(object sender, EventArgs e) { Producto producto = new Producto(TextBox1.Text, Convert.ToDecimal(TextBox2.Text), Convert.ToInt32(TextBox3.Text)); int id = AdminProducto.Crear(producto); if (id > 0) { lblID.Text = id.ToString(); lblCheck.Text = "Insert OK" + id.ToString(); TraerTodosLosProductos(); } else { lblCheck.Text = "FALLO"; } }