示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TestActionCommand"/> class.
 /// </summary>
 /// <param name="innerCommand">The inner command.</param>
 public BeforeAndAfterTestCommand(TestCommand innerCommand) : base(innerCommand)
 {
 }
 /// <summary>
 /// Construct a DelegatingTestCommand
 /// </summary>
 /// <param name="innerCommand">The command wrapped by this one</param>
 protected DelegatingTestCommand(TestCommand innerCommand)
     : base(innerCommand.Test)
 {
     _innerCommand = innerCommand;
 }
 public ApplyToContextCommand(TestCommand innerCommand, IApplyToContext change)
     : base(innerCommand)
 {
     _change = change;
 }