// used for the search button on the master page

        public List<Job> SearchJob(string JobType, string Location )
        {
            List<Job> JobList = new List<Job>();

            DALRecruiterWebsiteManager SearchForJobsList = new DALRecruiterWebsiteManager();

            JobList = SearchForJobsList.SearchJobsList(JobType, Location);

            return JobList;
        }