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