Package org.adfemg.hr

Examples of org.adfemg.hr.TEmployee


    public static TEmployee toSOA(Employee employee) {
        if (employee == null) {
            return null;
        }
        TEmployee retval = new TEmployee();
        retval.setId(toSOA(employee.getId()));
        retval.setFirstName(employee.getFirstName());
        retval.setLastName(employee.getLastName());
        retval.setEmail(employee.getEmail());
        retval.setPhoneNumber(employee.getPhoneNumber());
        retval.setHireDate(toSOA(employee.getHireDate()));
        retval.setJob(toSOA(employee.getJob()));
        retval.setSalary(toSOA(employee.getSalary()));
        retval.setCommissionPercentage(toSOA(employee.getCommissionPercentage()));
        return retval;
    }
View Full Code Here

TOP

Related Classes of org.adfemg.hr.TEmployee

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.