コード例 #1
0
        // deletes job application for employer profile. 

        public bool DeleteJobApplicant(string DeleteFullName, string DeleteJobId, string DeleteEmpId)
        {
            bool CheckDelete = false;

            DALRecruiterWebsiteManager DeleteJobApplicant = new DALRecruiterWebsiteManager();

          //  BLL.BLLRecruiterWebsiteManager DeleteJobApplicant = new BLLRecruiterWebsiteManager();

            CheckDelete = DeleteJobApplicant.DeleteJobApplicant(DeleteFullName, DeleteJobId, DeleteEmpId);

            return CheckDelete;

        }