public XElement CopiaConsultatablero(int?pIdPeriodo, string pClUsuario, string pNbPrograma) { using (context = new SistemaSigeinEntities()) { ObjectParameter pout_clave_retorno = new ObjectParameter("XML_RESULTADO", typeof(XElement)); context.SPE_COPIA_CONSULTA_TABLERO_CONTROL(pout_clave_retorno, pIdPeriodo, pClUsuario, pNbPrograma); return(XElement.Parse(pout_clave_retorno.Value.ToString())); } }