Example #1
0
 /** @return Returns the investigators. */
 public List getInvestigators() {
   if (investigators == null || refresh == true) {
     investigators = investigatorDAO.getInvestigators();
     refresh = false;
   }
   return investigators;
 }
Example #2
0
 public void saveInvestigator(Investigator stock) throws Exception {
   investigatorDAO.saveInvestigator(stock);
   refresh = true;
 }
Example #3
0
 /** For Investigator */
 public Investigator getInvestigator(Integer InvestigatorID) {
   return investigatorDAO.getInvestigator(InvestigatorID);
 }