/** Return the Software business object */ public Software getSoftwareBO() { try { return new Software(this.getSoftware()); } catch (Exception e) { throw new RuntimeException(e.toString()); } }
/** Returns the Candidate business object */ public Candidate getCandidateBO() { try { return new Candidate(this.getCandidate()); } catch (Exception e) { throw new RuntimeException(e.toString()); } }