public Inventario() { inicio = null; }
private void btnInsertar_Click_1(object sender, EventArgs e) { Producto producto = new Producto(Convert.ToInt32(txtCodigo.Text), txtNombre.Text, Convert.ToInt32(txtCantidad.Text), Convert.ToInt32(txtCosto.Text)); inventario.insertar(producto, Convert.ToInt32(txtPocision.Text)); }