//gets a list fo jobs employer profile. 

        public List<Job> ListJobs(int EmployerID)
        {
           // int test = EmployerID;

            List<Job> JobsList = new List<Job>();

            DALRecruiterWebsiteManager GetListofJobs = new DALRecruiterWebsiteManager();

            JobsList = GetListofJobs.GetJobListForEmployerProfile(EmployerID);

            return JobsList;
        }