コード例 #1
0
 public CustomerPhone readCustomerPhoneById(Long customerPhoneId) {
   return (CustomerPhone)
       em.find(
           entityConfiguration.lookupEntityClass(CustomerPhone.class.getName()), customerPhoneId);
 }
コード例 #2
0
 public OfferCode readOfferCodeById(Long offerCodeId) {
   return (OfferCode)
       em.find(entityConfiguration.lookupEntityClass(OfferCode.class.getName()), offerCodeId);
 }