Inheritance: ICommand
Exemplo n.º 1
0
 protected Command(Command parent)
 {
     _parent = parent;
 }
Exemplo n.º 2
0
 public RenameCommand(Command parent, string newName)
     : base(parent)
 {
     _newName = newName;
 }
Exemplo n.º 3
0
 public DropCommand(Command parent)
     : base(parent)
 {
 }
Exemplo n.º 4
0
 public CallCommand(Command parent, Action<IRuntimeContext> action)
     : base(parent)
 {
     _action = action;
 }