Beispiel #1
0
 public void ExecutarCommand(AbstractCommand command)
 {
     if (command.CanExecute(this))
     {
         command.Execute(this);
     }
 }