예제 #1
0
 public virtual void ExecuteShowCardsToPile(ShowCardsToPileCommand command)
 {
     command.Sender = Player;
     Player.ShowCardsToPile.OnNext(command);
 }
예제 #2
0
 public virtual void ShowCardsToPileHandler(ShowCardsToPileCommand command)
 {
     this.ShowCardsToPile(command.Sender as PlayerViewModel);
 }