Package com.derbysoft.spitfire.fastjson.dto

Examples of com.derbysoft.spitfire.fastjson.dto.RatePlanDTO


        roomRate.setRates(rates);
        return roomRate;
    }

    private RatePlanDTO createExpectedRatePlan() {
        RatePlanDTO ratePlan = new RatePlanDTO();
        ratePlan.setCode(RATE_PLAN_CODE);
        ratePlan.setName(RATE_PLAN_NAME);
        ratePlan.setPaymentType(PAYMENT_TYPE_POA); // TODO paymentType only cash back?
        ratePlan.setTaxes(createExpectedTaxs());
        ratePlan.setServiceCharges(createExpectedServiceCharges());
        ratePlan.setNeedGuarantee(NEED_GUARANTEE);
        ratePlan.setCancelPolicy(createExpectedCancelPolicy());
        ratePlan.setAvailGuarantees(createExpectedAvailGuarantee()); // TODO translator
        ratePlan.setFreeMeal(createExpectedFreeMeal());
        return ratePlan;
    }
View Full Code Here

TOP

Related Classes of com.derbysoft.spitfire.fastjson.dto.RatePlanDTO

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.