priceSetDto.setUpdatedDate(priceSet.getUpdatedDate());
List<PriceSetItemDto> priceSetItemDtoList = new ArrayList<PriceSetItemDto>();
for (PriceSetItem priceSetItem : priceSet.getItems()) {
priceSetItemDtoList.add(map(priceSetItem, PriceSetItemDto.class));
}
Collections.sort(priceSetItemDtoList, new PriceSetItemDtoComparator());
priceSetDto.setItems(priceSetItemDtoList);
return priceSetDto;
}