public XElement Elimina_C_AREA_TEMATICA(int?ID_AREA_TEMATICA = 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(pout_clave_retorno, ID_AREA_TEMATICA, usuario, programa);
         //regresamos el valor de retorno de sql
         return(XElement.Parse(pout_clave_retorno.Value.ToString()));
     }
 }