Example #1
0
        public static IWaitedCommand Then(this IWaitedCommand left, IWaitedCommand right)
        {
            var command = new CompositeWaitedCommand();

            command.Add(left);
            command.Add(right);
            return(command);
        }
Example #2
0
 public void Add(IWaitedCommand waitedCommand)
 {
     commands.Add(waitedCommand);
 }