Ejemplo n.º 1
0
        public static void Main()
        {
            var vacuumCleaner = new VacuumCleaner();
            var windowWasher  = new WindowWasher();

            var startVacuumCleanerCommand  = new VacuumCleanerOnCommand(vacuumCleaner);
            var finishVacuumCleanerCommand = new VacuumCleanerOffCommand(vacuumCleaner);
            var startWindowWasherCommand   = new WindowWasherOnCommand(windowWasher);
            var finishWindowWasherCommand  = new WindowWasherOffCommand(windowWasher);

            var houseKeeper = new HouseKeeper();

            houseKeeper.SetCommand(HouseKeeperCommandsEnum.VacuumCleanerCommand, startVacuumCleanerCommand, finishVacuumCleanerCommand);
            houseKeeper.SetCommand(HouseKeeperCommandsEnum.WindowWasherCommand, startWindowWasherCommand, finishWindowWasherCommand);

            Console.WriteLine(houseKeeper.Start(HouseKeeperCommandsEnum.VacuumCleanerCommand));
            Console.WriteLine(houseKeeper.Finish(HouseKeeperCommandsEnum.VacuumCleanerCommand));
            Console.WriteLine(houseKeeper.Start(HouseKeeperCommandsEnum.WindowWasherCommand));
            Console.WriteLine(houseKeeper.Finish(HouseKeeperCommandsEnum.WindowWasherCommand));
        }
 public WindowWasherOnCommand(WindowWasher windowWasher)
 {
     this.windowWasher = windowWasher;
 }