Пример #1
0
 /** Return the Software business object */
 public Software getSoftwareBO() {
   try {
     return new Software(this.getSoftware());
   } catch (Exception e) {
     throw new RuntimeException(e.toString());
   }
 }
Пример #2
0
 /** Returns the Candidate business object */
 public Candidate getCandidateBO() {
   try {
     return new Candidate(this.getCandidate());
   } catch (Exception e) {
     throw new RuntimeException(e.toString());
   }
 }