public bool spInsDocumentosRConta(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("IdDocumentoRConta", typeof(Int32)); ObjectParameter VM = new ObjectParameter("VMensaje", typeof(String)); try { using (ClusmextContext context = new ClusmextContext()) { context.spInsDocumentosRConta(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); }