Package com.dream.domain.resume

Examples of com.dream.domain.resume.Name


    public BasicInfoDTO() {
    }

    public BasicInfoDTO(BasicInfo basicInfo) {
        Name name = basicInfo.name();
        this.englishName = name.englishName();
        this.chineseName = name.chineseName();
        this.birthday = basicInfo.birthday().toString();
        this.phone = basicInfo.phone();
        this.email = basicInfo.email();
        this.qq = basicInfo.qq();
        this.gender = basicInfo.gender();
View Full Code Here


    public void setSelfDescription(String selfDescription) {
        this.selfDescription = selfDescription;
    }

    public BasicInfo toBasicInfo() {
        Name name = new Name(this.chineseName, this.englishName);
        LocalDate birthday = JodaTimeUtil.parseLocalDate(this.birthday);
        Portrait portrait = null;
        try {
            if (!this.portrait.isEmpty()) {
                portrait = new Portrait(this.portrait.getOriginalFilename(), this.portrait.getContentType(), this.portrait.getBytes());
View Full Code Here

TOP

Related Classes of com.dream.domain.resume.Name

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.