public XElement Elimina_K_AREA_TEMATICA_CURSO(int?ID_AREA_TEMATICA = null, int?ID_CURSO = null, string usuario = null, string programa = null)
 {
     using (context = new SistemaSigeinEntities())
     {
         //Declaramos el objeto de valor de retorno
         ObjectParameter pout_clave_retorno = new ObjectParameter("XML_RESULTADO", typeof(XElement));
         //  pout_clave_retorno.Value = "";
         context.SPE_ELIMINA_C_AREA_TEMATICA_CURSO(pout_clave_retorno, ID_AREA_TEMATICA, ID_CURSO, usuario, programa);
         //regresamos el valor de retorno de sql
         return(XElement.Parse(pout_clave_retorno.Value.ToString()));
     }
 }