public ActionResult DeclineApp(int id)
 {
     try
     {
         eDAO.DeclineApp(id);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(RedirectToAction("Index"));
     }
 }