Beispiel #1
0
  private CounterTO[] getAllTrx(Date trxDate) {
    BonusDAO bonusDAO = new BonusDAO();
    CounterTO[] listCounterTO = bonusDAO.getAllTrx(trxDate);

    for (CounterTO cTO : listCounterTO) {
      BizCenterTO[] bcTOList = bonusDAO.getAllBizCtrInfo(cTO.getMbrTO().getId());
      cTO.getMbrTO().setBizCtrTOList(bcTOList);
    }

    return listCounterTO;
  }