void UITransform::transformObject2Form(SkillsInformation& info, Form& form) { form.setText("Category Id",info.getCategoryId()); form.setText("Skill Description",info.getSkillDescription()); form.setText("Skill Id",info.getSkillId()); form.setText("Skill Name",info.getSkillName()); form.setText("Skill Status",info.getStatus()); }
void UITransform::transformObject2Form(AccentureDetails& info, Form& form) { form.setText("Enterprise Address",info.getEnterpriseAddress()); form.setText("Enterprise Id",info.getEnterpriseId()); form.setText("GMU",info.getGMU()); form.setText("Hire Date (DD-MON-YYYY)",info.getDateHired()); form.setText("Level",info.getLevel()); form.setText("LMU",info.getLMU()); form.setText("Speciality",info.getSpecialty()); form.setText("Status",info.getStatus()); form.setText("WorkGroup",info.getWorkGroup()); form.setText("Service Line",info.getServiceLine() ); }
void UITransform::transformObject2Form(ProjectInfo& info, Form& form) { form.setText("Client",info.getClient()); form.setText("Start Date",info.getStartDate()); form.setText("End Date",info.getEndDate()); form.setText("Project Description",info.getProjectDescription()); form.setText("Project Name",info.getProjectName()); form.setText("Project Status",info.getStatus()); }
void UITransform::transformObject2Form(EmployeeInfo& info, Form& form) { form.setText("First Name", info.getFirstName() ); form.setText("Last Name",info.getLastName() ); form.setText("Middle Name",info.getMiddleName() ); form.setText("Gender(M/F)",info.getGender() ); char buf[20]; sprintf(buf, "%d", info.getAge() ); // form.setText("Age", buf); form.setText("Date of Birth (DD-MON-YYYY)",info.getDOB() ); form.setText("Citizenship",info.getCitizenship() ); form.setText("City",info.getCity() ); form.setText("Home Phone",info.getHomePhoneNo() ); form.setText("Mobile Number",info.getMobilePhoneNo() ); form.setText("Educational Attainment",info.getEducationalAttainment() ); form.setText("Street Address 1",info.getStreet1() ); form.setText("Street Address 2",info.getStreet2() ); form.setText("State",info.getState() ); form.setText("Country",info.getCountry() ); form.setText("Recognition",info.getRecognitions() ); form.setText("SSS No",info.getSSSNo() ); form.setText("TIN No",info.getTinNo() ); form.setText("Civil Status",info.getCivilStatus() ); }
void UITransform::transformObject2Form(SkillCategory& info, Form& form) { form.setText("Category Description",info.getCategoryDescription()); form.setText("Category Name",info.getCategoryName()); form.setText("Category Status",info.getStatus()); }