public XElement ActualizarPuestoFactor(string pXmlPuestos, string pXmlFactores, string pClUsuario, string pNbPrograma) { using (context = new SistemaSigeinEntities()) { ObjectParameter pOutClretorno = new ObjectParameter("XML_RESULTADO", typeof(XElement)); context.SPE_ACTUALIZA_PUESTO_FACTOR(pOutClretorno, pXmlPuestos, pXmlFactores, pClUsuario, pNbPrograma); return(XElement.Parse(pOutClretorno.Value.ToString())); } }