1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
namespace jive { public class ChainedCommand : Command { readonly Command left; readonly Command right; public ChainedCommand(Command left, Command right) { this.left = left; this.right = right; } public void run() { left.run(); right.run(); } } }