Package beans.user.job.entity

Examples of beans.user.job.entity.DangerJobPK


            dangerJob.setLastExam(details.lastExam);
            dangerJob.setExamManually(true);///Если заюзано из бина значит руками
        }else {
            auditDJ = new AuditDoc<DangerJob>(null, getCollaborator());
            dangerJob = new DangerJob();
            dangerJob.setKey(new DangerJobPK(details.dangerId, jobId));
            dangerJob.setDanger(findEntity(Danger.class, details.dangerId));
            dangerJob.setJob(findEntity(Job.class, jobId));
            dangerJob.setLastExam(details.lastExam);
            dangerJob.setExamManually(details.lastExamManually);
        }
View Full Code Here

TOP

Related Classes of beans.user.job.entity.DangerJobPK

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.