private void btnInicio_Click(object sender, EventArgs e)
        {
            Producto producto = new Producto(Convert.ToInt32(txtCodigo.Text), txtNombre.Text, Convert.ToInt32(txtCantidad.Text), Convert.ToInt32(txtCosto.Text));

            inventario.agregarProducto(producto);
            txtCodigo.Focus();
        }
Example #2
0
        private void btnAgregar_Click(object sender, EventArgs e)
        {
            Producto producto1 = new Producto(Convert.ToInt32(txtCodigo.Text), txtNombre.Text,
                                              Convert.ToInt32(txtCantidad.Text), Convert.ToInt32(txtPrecio.Text));

            inventario1.agregarProducto(producto1);
            txtReporte.Text = inventario1.reporteDeProductos();
        }