Esempio n. 1
0
 public BindCmd(string key, IEnumerable <Executable> commands)
 {
     this.Key      = key;
     this.Commands = new CommandCollection(commands);
 }
Esempio n. 2
0
 public AliasCmd(string name, IEnumerable <Executable> commands)
 {
     this.Name     = new SingleCmd(name);
     this.Commands = new CommandCollection(commands);
 }