public bool BorrarDocumento(int id, int Creado)
        {
            bool            val = false;
            ObjectParameter VV  = new ObjectParameter("VValor_Mensaje", typeof(Int32));
            ObjectParameter VM  = new ObjectParameter("VMensaje", typeof(String));

            try
            {
                using (ClusmextContext context = new ClusmextContext()) {
                    context.spPupDesHabilitar_Documentos(id, Creado, VV, VM);
                    val = bool.Parse(VV.Value.ToString());
                }
            }
            catch (Exception ex) {
            }
            return(val);
        }