Package lv.odylab.evemanage.domain.priceset

Examples of lv.odylab.evemanage.domain.priceset.PriceSetItem


        return requirementDto;
    }

    @Override
    public PriceSetItem map(PriceSetItemDto priceSetItemDto, Class<PriceSetItem> priceSetItemClass) throws InvalidPriceException {
        PriceSetItem priceSetItem = new PriceSetItem();
        priceSetItem.setItemTypeID(priceSetItemDto.getItemTypeID());
        priceSetItem.setItemCategoryID(priceSetItemDto.getItemCategoryID());
        priceSetItem.setItemTypeName(priceSetItemDto.getItemTypeName());
        priceSetItem.setItemTypeIcon(priceSetItemDto.getItemTypeIcon());
        priceSetItem.setPrice(priceSetItemDto.getPrice().toPlainString());
        return priceSetItem;
    }
View Full Code Here

TOP

Related Classes of lv.odylab.evemanage.domain.priceset.PriceSetItem

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.