public XElement ActualizarNivelPuesto(int ID_TABULADOR, string CL_USUARIO, string NB_PROGRAMA) { using (context = new SistemaSigeinEntities()) { ObjectParameter poutClaveRetorno = new ObjectParameter("XML_RESULTADO", typeof(XElement)); context.SPE_ACTUALIZA_NIVEL_PUESTO(poutClaveRetorno, ID_TABULADOR, CL_USUARIO, NB_PROGRAMA); return(XElement.Parse(poutClaveRetorno.Value.ToString())); } }