// update wacthed job details
 public bool UpdateWatchedJob(WatchedJob wJob)
 {
     try
     {
         DALRecruiterWebsiteManager DALMngr = new DALRecruiterWebsiteManager();
         bool result = DALMngr.UpdateWatchedJobDetails(wJob);
         return result;
     }
     catch (Exception ex)
     {
         throw;
     }
 }