public XElement ActualizarEstatusTabulador(int?pID_TABULADOR, string pCL_ESTATUS_TABULADOR, string usuario, string programa, string pClTipoOperacion) { using (context = new SistemaSigeinEntities()) { ObjectParameter poutClaveRetorno = new ObjectParameter("XML_RESULTADO", typeof(XElement)); context.SPE_ACTUALIZA_ESTATUS_TABULADOR(poutClaveRetorno, pID_TABULADOR, pCL_ESTATUS_TABULADOR, usuario, programa, pClTipoOperacion); return(XElement.Parse(poutClaveRetorno.Value.ToString())); } }