public ActionResult ShowHotJobs()
 {
     Job objJob = new Job();
     int limit = Convert.ToInt32(ConfigurationManager.AppSettings["NumberOfHotJobsToDisplayInModule"].ToString());
     return base.View("HotJobsModule", objJob.HotJobs(limit));
 }