Package com.alexnevsky.hotel.commands.admin

Examples of com.alexnevsky.hotel.commands.admin.SelectRoomCommand


    this.commandCatalog.put(AttributesManager.COMMAND_VIEW_BILL, new ViewBillCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_VIEW_CUSTOMERS, new ViewCustomersCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_CANCEL_ORDER, new CancelOrderCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_DELETE_ORDER, new DeleteOrderCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_FIND_ROOM, new FindRoomCommand());
    this.commandCatalog.put(AttributesManager.COMMAND_SELECT_ROOM, new SelectRoomCommand());

    // admin and system commands
    this.superCommandCatalog.add(ViewRoomsCommand.class);
    this.superCommandCatalog.add(ViewOrdersCommand.class);
    this.superCommandCatalog.add(ViewBillCommand.class);
View Full Code Here

TOP

Related Classes of com.alexnevsky.hotel.commands.admin.SelectRoomCommand

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.