Пример #1
0
 public XElement ActualizarRepuestasCuestionario(string pXmlRespuestas, string pClUsuario, string pNbPrograma)
 {
     using (contexto = new SistemaSigeinEntities())
     {
         ObjectParameter pOutClRetorno = new ObjectParameter("XML_RESULTADO", typeof(XElement));
         contexto.SPE_ACTUALIZA_PREGUNTA_RESPUESTA(pOutClRetorno, pXmlRespuestas, pClUsuario, pNbPrograma);
         return(XElement.Parse(pOutClRetorno.Value.ToString()));
     }
 }