public static PatronRepoService getBean()
 {
     if (patronRepoService == null)
     {
         patronRepoService = new PatronRepoImpl();
     }
     return(patronRepoService);
 }
Exemple #2
0
 public PatronImpl()
 {
     patronRepoService = PatronRepoServiceBean.getBean();
 }