Package com.derbysoft.spitfire.fastjson.dto

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


    }

    private List<AvailRoomStayDTO> createExpectedRoomStays() {
        ArrayList<AvailRoomStayDTO> roomStays = new ArrayList<AvailRoomStayDTO>();
        for (int i = 0; i < STAYS_COUNT; ++i) {
            AvailRoomStayDTO roomStay = new AvailRoomStayDTO();
            roomStay.setLanguageType(LANGUAGE_TYPE_CN);
            roomStay.setRoomType(createExpectedRoomType());
            roomStay.setRatePlan(createExpectedRatePlan());
            roomStay.setQuantity(ROOM_COUNT);
            roomStay.setRoomRate(createExpectedRoomRate());
            roomStay.setProviderChain(createExpectedProviderChain());
            roomStays.add(roomStay);
        }

        return roomStays;
    }
View Full Code Here

TOP

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

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.