@Override
 public List<MembershipFee> getAllMembershipFees() throws ServiceException {
   List<MembershipFee> fees = dao.getAllEntities();
   return fees;
 }
Example #2
0
 @Override
 public List<Category> getAllCategories() throws ServiceException {
   List<Category> categories = dao.getAllEntities();
   return categories;
 }