}
public EducationExperience toEducationExperience() {
LocalDate startDate = JodaTimeUtil.parseLocalDate(this.startDate);
LocalDate endDate = JodaTimeUtil.parseLocalDate(this.endDate);
return new EducationExperience(startDate, endDate, this.school, this.major, this.description);
}