public static NotebookDAO getInstance()
 {
     if (notebookDAO == null)
     {
         notebookDAO = new NotebookDAOImplementation();
     }
     return(notebookDAO);
 }
Example #2
0
 private NotebookDTOImplementation()
 {
     Logging.singlton(nameof(NotebookDTO));
     notebookDAO = NotebookDAOImplementation.getInstance();
 }