//gets a lift of employers for admin section

        public List<Employer> GetListOfEmployerAdmin()
        {

            List<Employer> ListOfEmployersAdmin = new List<Employer>();

            DALRecruiterWebsiteManager GetListOfEmployers = new DALRecruiterWebsiteManager();

            ListOfEmployersAdmin = GetListOfEmployers.GetListOfEmployersAdmin();


            return ListOfEmployersAdmin;
        }