示例#1
0
 public Almacen()
 {
     inicio = null;
 }
示例#2
0
 private void btnInsertar_Click(object sender, EventArgs e)
 {
     nuevoProducto = new Productos(Convert.ToInt32(txtCodigo.Text), txtNombre.Text,
                                   Convert.ToInt32(txtCantidad.Text), Convert.ToInt32(txtCosto.Text));
     nuevoAlmacen.insertarProducto(Convert.ToInt32(txtInsertar.Text), nuevoProducto);
 }