public bool spInsDocumentosRVincu(int id, string Nombre, int IdUser, int IdTipo, out string NVV)
        {
            bool Val = false;

            NVV = string.Empty;
            ObjectParameter NV  = new ObjectParameter("Nombre_Virtual", typeof(String));
            ObjectParameter VV  = new ObjectParameter("VValor_Mensaje", typeof(Int32));
            ObjectParameter IDD = new ObjectParameter("IdDocumentoRVinculaciones", typeof(Int32));
            ObjectParameter VM  = new ObjectParameter("VMensaje", typeof(String));

            try
            {
                using (ClusmextContext context = new ClusmextContext())
                {
                    context.spInsDocumentosRVincu(Nombre, 1, IdUser, id, IdTipo, NV, IDD, VV, VM);
                    if (VV.Value.ToString() == "0")
                    {
                        NVV = NV.Value.ToString();
                        Val = true;
                    }
                }
            }
            catch (Exception ex)
            {
            }
            return(Val);
        }