Exemplo n.º 1
0
 /**
  * Returns all plans that affect the pricing of the given item, or that include the item in a
  * bundle.
  *
  * @param itemId item id
  * @return list of plans, empty list if none found
  */
 public List<PlanDTO> getPlansByAffectedItem(Integer itemId) {
   return planDas.findByAffectedItem(itemId);
 }