public XElement ActualizarEventoCalendario(string pXmlParticipantes, string pClUsuario, string pNbPrograma)
        {
            using (contexto = new SistemaSigeinEntities())
            {
                ObjectParameter pout_clave_retorno = new ObjectParameter("XML_RESULTADO", typeof(XElement));

                contexto.SPE_ACTUALIZA_EVENTO_PARTICIPANTE(pout_clave_retorno, pXmlParticipantes, pClUsuario, pNbPrograma);

                return(XElement.Parse(pout_clave_retorno.Value.ToString()));
            }
        }