// gets job applications for Employer profile. 

        public List<JobApplication> GetApplicationsFormDatabase(int EmployerID)
        {

            List<JobApplication> Application = new List<JobApplication>();

            DALRecruiterWebsiteManager GetListofApplicant = new DALRecruiterWebsiteManager();


            Application = GetListofApplicant.RequestJobApplicationsFormDB(EmployerID);
            

            return Application;

        }