public UIViewModelCommand(Func <object, bool> canExecute, Func <object, Task> execute, UIViewModelBase viewModel) : this(execute, viewModel) { this.canExecute = canExecute; }
public UIViewModelCommand(Func <bool> canExecute, Func <object, Task> asyncParameterExecute, UIViewModelBase viewModel) : this(asyncParameterExecute, viewModel) { this.canExecute = canExecute; }
public UIViewModelCommand(Func <object, Task> execute, UIViewModelBase viewModel) { this.execute = execute; this.viewModel = viewModel; }
public UIViewModelCommand(Func <bool> canExecute, Action <object> parameterExecute, UIViewModelBase viewModel) : this(parameterExecute, viewModel) { this.canExecute = canExecute; }
public UIViewModelCommand(Func <object, Task> asyncParameterExecute, UIViewModelBase viewModel) { this.asyncParameterExecute = asyncParameterExecute; this.viewModel = viewModel; }
public UIViewModelCommand(Action <object> parameterExecute, UIViewModelBase viewModel) { this.parameterExecute = parameterExecute; this.viewModel = viewModel; }
public UIViewModelCommand(Func <bool> canExecute, Func <Task> asyncExecute, UIViewModelBase viewModel) : this(asyncExecute, viewModel) { this.canExecute = canExecute; }
public UIViewModelCommand(Func <Task> asyncExecute, UIViewModelBase viewModel) { this.asyncExecute = asyncExecute; this.viewModel = viewModel; }
public UIViewModelCommand(Func <bool> canExecute, Action execute, UIViewModelBase viewModel) : this(execute, viewModel) { this.canExecute = canExecute; }
public UIViewModelCommand(Action execute, UIViewModelBase viewModel) { this.execute = execute; this.viewModel = viewModel; }