Examples of TJob


Examples of org.adfemg.hr.TJob

    public static TJob toSOA(org.adfemg.datacontrol.demo.persist.Job job) {
        if (job == null) {
            return null;
        }
        TJob retval = new TJob();
        retval.setId(job.getId());
        retval.setTitle(job.getTitle());
        retval.setMinSalary(toSOA(job.getMinSalary()));
        retval.setMaxSalary(toSOA(job.getMaxSalary()));
        return retval;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.