Example #1
0
 public DeleteTaskCommand(TaskDecoratorTest outerInstance, TaskEntity task)
 {
     this.outerInstance = outerInstance;
     this.task          = task;
 }
Example #2
0
 public DecorateTaskCommand(TaskDecoratorTest outerInstance, TaskEntity task, TaskDecorator decorator)
 {
     this.outerInstance = outerInstance;
     this.task          = task;
     this.decorator     = decorator;
 }