public ActionResult Delete(int id)
 {
     try
     {
         js.Delete_Job_Posting(id);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }