private void Mostrar_Prestamo()
        {
            string ruta = Prest_Logica.Ruta + "_" + Prestamo.id + ".xml";

            Prest_Logica.GuardarXML(Prestamo, ruta);
            //Transformanos el archivo XML en HTML con el metodo
            string html = Prest_Logica.Ruta + "_" + Prestamo.id + ".html";;

            ruta = Prest_Logica.TransformXMLToHTML(ruta, html);

            //Le asignamos el HTML al web broser
            wbbMostrar.Url = new Uri(Application.StartupPath + "\\" + ruta);
        }