Ejemplo n.º 1
0
 public override void Execute()
 {
     Executer.ExecPhone(Name);
 }
Ejemplo n.º 2
0
 public PhoneCommand(string name, Executer executer) : base(name, executer)
 {
 }
Ejemplo n.º 3
0
 public MarrayCommand(string name, Executer executer) : base(name, executer)
 {
 }
Ejemplo n.º 4
0
 public override void Execute()
 {
     Executer.ExecMarry(Name);
 }
Ejemplo n.º 5
0
 protected Command(string name, Executer executer)
 {
     this.Name     = name;
     this.Executer = executer;
 }