Ejemplo n.º 1
0
 public BaseSyncCommand(ICommandStatusModel commandStatusModel) : base(commandStatusModel)
 {
 }
 public BaseCommand(ICommandStatusModel commandStatusModel)
 {
     this.commandStatusModel             = commandStatusModel;
     commandStatusModel.PropertyChanged += this.OnBusyPropertyChanged;
 }
Ejemplo n.º 3
0
 public BaseAsyncCommand(ICommandStatusModel busyModel) : base(busyModel)
 {
 }