/** @return the hoteItems */
 public List<BuyHotelItem> getHoteItems() {
   setMemberAccount(
       (MemberAccount)
           FacesContext.getCurrentInstance()
               .getExternalContext()
               .getSessionMap()
               .get("currentMember"));
   if ((hoteItems == null) || hoteItems.isEmpty()) {
     hoteItems = bimbl.getAllHotelItems(getMemberAccount());
   }
   return hoteItems;
 }