public XElement ActualizaReingresoEmpleado(string pXmlDatosEmpleado, string pClUsuario, string pNbPrograma) { using (context = new SistemaSigeinEntities()) { ObjectParameter pOutClRetorno = new ObjectParameter("XML_RESULTADO", typeof(XElement)); context.SPE_ACTUALIZA_EMPLEADO_REINGRESO(pOutClRetorno, pXmlDatosEmpleado, pClUsuario, pNbPrograma); return(XElement.Parse(pOutClRetorno.Value.ToString())); } }