public virtual void GotDropTargetHandler(GotDropTargetCommand command)
 {
     this.GotDropTarget(command.Sender as AnimalViewModel);
 }
Пример #2
0
 public virtual void ExecuteGotDropTarget(GotDropTargetCommand command)
 {
     command.Sender = Animal;
     Animal.GotDropTarget.OnNext(command);
 }