Example #1
0
 /**
  * Deleting Notebook from database
  *
  * @id : the id of the notebook
  *
  * return true if the delete operation wsa successfull and false otherwise
  **/
 public bool delete(String id)
 {
     try {
         return(notebookDAO.delete(id));
     } catch (Exception e) {
         Logging.logInfo(true, e.Message);
     }
     return(false);
 }