public void deleteTags() {
   tagDAO.removeAll();
   personDAO.removeAll();
 }
 private void saveTag(Tag tag) {
   tagDAO.merge(tag);
 }
 public List<TagRanking> getTagRanking() {
   return tagDAO.getPopularityCount();
 }
 public List<Tag> getAllTags() {
   return tagDAO.getAll();
 }