Пример #1
0
 public Resume(User user)
 {
     User = user;
 }
Пример #2
0
 public void SetFullResumeInfo()
 {
     var dao = new DaoResume();
     DataTable infoTable = dao.GetFullResumeInfoById(Convert.ToInt32(ResumeId));
     Certificate = new Certificate(infoTable.Rows[0]["CertificateID"].ToString(), infoTable.Rows[0]["CertificateName"].ToString());
     LangSkill = new LangSkill(infoTable.Rows[0]["SkillID"].ToString(), infoTable.Rows[0]["SkillName"].ToString());
     JobSalaryLevel = new JobSalaryLevel(infoTable.Rows[0]["SalaryLevelID"].ToString(), infoTable.Rows[0]["SalaryLevel"].ToString());
     Province = new Province(infoTable.Rows[0]["ProvinceID"].ToString(), infoTable.Rows[0]["ProvinceName"].ToString());
     JobIndustries = new JobIndustries(infoTable.Rows[0]["JobIndustryID"].ToString(), infoTable.Rows[0]["JobIndustryName"].ToString());
     JobPosition = new JobPosition(infoTable.Rows[0]["JobPositionID"].ToString(), infoTable.Rows[0]["JobPositionName"].ToString());
     User=new User(infoTable.Rows[0]["UserID"].ToString());
     ExperienceLevel = new ExperienceLevel(infoTable.Rows[0]["ExperienceLevelID"].ToString(), infoTable.Rows[0]["ExperienceLevelName"].ToString());
     WorkType = new WorkType(infoTable.Rows[0]["WorkTypeID"].ToString(), infoTable.Rows[0]["WorkTypeName"].ToString());
     Achievement = infoTable.Rows[0]["ACHIEVEMENTS"].ToString();
     CareerGoal = infoTable.Rows[0]["CAREER_GOALS"].ToString();
     WorkExperience = infoTable.Rows[0]["WORK_EXPERIENCE"].ToString();
     Literacy = infoTable.Rows[0]["LITERACY"].ToString();
     Skill = infoTable.Rows[0]["SKILLS"].ToString();
     Reference = infoTable.Rows[0]["REFERENCE"].ToString();
     ContactEmail = infoTable.Rows[0]["ContactEmail"].ToString();
     ResumeName = infoTable.Rows[0]["ResumeName"].ToString();
     Atachment = infoTable.Rows[0]["ATTACHMENT"].ToString();
 }
Пример #3
-1
 public bool SetFullResumeInfoUpdate(string resumeTitle, Certificate certificate, JobSalaryLevel salary,
     LangSkill langSkill, Province location, JobIndustries category, JobPosition expectedPosition,
     ExperienceLevel jobExperienceLevel, WorkType worktype, string jobAchievement, string careerGoal,
     string experience, string literacy, string skill, string reference, User user, string contactMail, string resumeId, string attachFile)
 {
     ResumeId = resumeId;
     ResumeName = resumeTitle;
     Certificate = certificate;
     JobSalaryLevel = salary;
     LangSkill = langSkill;
     Province = location;
     JobIndustries = category;
     JobPosition = expectedPosition;
     ExperienceLevel = jobExperienceLevel;
     WorkType = worktype;
     Achievement = jobAchievement;
     CareerGoal = careerGoal;
     WorkExperience = experience;
     Literacy = literacy;
     Skill = skill;
     Reference = reference;
     User = user;
     ContactEmail = contactMail;
     Atachment = attachFile;
     return SaveResumeInfoUpdate();
 }