// insert job application form the JobApply page. 

        public bool InsertJobApplication(JobApplication NewApp)
        {
            bool DidItWork;

            DAL.DALRecruiterWebsiteManager InsertNewApp = new DALRecruiterWebsiteManager();

            DidItWork = InsertNewApp.InsertJobApplication(NewApp);

           return DidItWork;

        }