Package com.derbysoft.spitfire.fastjson.dto

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


        cancelPolicyDTO.setDescription(CANCEL_POLICY_DESCRIPTION);
        return cancelPolicyDTO;
    }

    private RoomRateDTO createExpectedRoomRate() {
        RoomRateDTO roomRate = new RoomRateDTO();
        List<RateDTO> rates = new ArrayList<RateDTO>();
        rates.add(createExpectedFirstDayRate());
        rates.add(createExpectedSecondDayRate());
        rates.add(createExpectedThirdDayRate());
        rates.add(createExpectedForthDayRate());
        roomRate.setRates(rates);
        return roomRate;
    }
View Full Code Here

TOP

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

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.