Package lv.odylab.evemanage.service.priceset

Examples of lv.odylab.evemanage.service.priceset.PriceSetItemDtoComparator


        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;
    }
View Full Code Here

TOP

Related Classes of lv.odylab.evemanage.service.priceset.PriceSetItemDtoComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.