Package org.hoteia.qalingo.core.domain

Examples of org.hoteia.qalingo.core.domain.DeliveryMethodPrice


            deliveryMethodForm.setName(deliveryMethod.getName());
            deliveryMethodForm.setDescription(deliveryMethod.getDescription());
           
            Map<String, String> prices = new HashMap<String, String>();
            for (Iterator<DeliveryMethodPrice> iterator = deliveryMethod.getPrices().iterator(); iterator.hasNext();) {
                DeliveryMethodPrice deliveryMethodPrice = (DeliveryMethodPrice) iterator.next();
                deliveryMethodForm.getPrices().put(deliveryMethodPrice.getCurrency().getCode(), deliveryMethodPrice.getPrice().toString());
            }
        }
        return deliveryMethodForm;
    }
View Full Code Here

TOP

Related Classes of org.hoteia.qalingo.core.domain.DeliveryMethodPrice

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.