/**
  * Removes an entry from the database
  *
  * @param id The ID of the entry to remove
  * @return True if the remove operation was successful
  */
 public static boolean removeEntry(long id) {
   return WinebookDAO.deleteEntry(id);
 }