public override string ToString()
        {
            string   mostrar = "";
            Producto tmp     = cabeza;

            while (tmp != null)
            {
                mostrar += tmp.ToString();
                tmp      = tmp.siguiente;
            }
            return(mostrar);
        }
        public string reporteInverso()
        {
            string   mostrar = "";
            Producto tmp     = cola;

            while (tmp != null)
            {
                mostrar += tmp.ToString();
                tmp      = tmp.anterior;
            }
            return(mostrar);
        }