Package com.bddinaction.flyinghigh.services

Examples of com.bddinaction.flyinghigh.services.InMemoryStatusService


        public FrequentFlyerBuilder(String frequentFlyerNumber) {
            this.frequentFlyerNumber = frequentFlyerNumber;
        }

        public FrequentFlyer named(String firstName, String lastName) {
            return new FrequentFlyer(frequentFlyerNumber, firstName, lastName, new InMemoryStatusService());
        }
View Full Code Here

TOP

Related Classes of com.bddinaction.flyinghigh.services.InMemoryStatusService

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.