public balanceAllSelectCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, CheckBox cb, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     checkbox    = cb;
     slaveNum    = i;
 }
Exemple #2
0
 public DelegateCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #3
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = (object parameter) => { return(true); };
 }
Exemple #4
0
 public WPFShippingCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public gen2BalanceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod, int i)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
     num         = i;
 }
Exemple #6
0
 public WPFExchangeCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #7
0
 public CommandeLocationVoiture(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #8
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     execute    = onExecuteMethod;
     canExecute = onCanExecuteMethod;
 }
Exemple #9
0
 public ViewModelRepoCommand(ICommandOnExecute executeMethod, ICommandOnCanExecute canExecuteMethod)
 {
     _execute    = executeMethod;
     _canExecute = canExecuteMethod;
 }
Exemple #10
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
       _canExecute = onCanExecuteMethod;
 }
Exemple #11
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
     : this(onExecuteMethod, (object parameter) => { return true; })
 {
 }
Exemple #12
0
 public CustomCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public ViewModelMakeChangeUICommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #14
0
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = onCanExecuteMethod;
 }
Exemple #15
0
 public UpdateServiceCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #16
0
 public RelayCommand(ICommandOnExecute onExecuteMethod)
 {
     m_Execute    = onExecuteMethod;
     m_CanExecute = ReturnTrue;
 }
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #18
0
 public Commanding(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public ExecutionManagerCommand(ICommandOnExecute onExecuteMethod)
 {
     m_execute     = onExecuteMethod;
     m_can_execute = true;
 }
Exemple #20
0
 public SimpleCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #21
0
 public SaveCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteCommand) {
     _execute = onExecuteMethod;
     _canExecute = onCanExecuteCommand;
 }
 public MyCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute = onExecuteMethod;
 }
Exemple #23
0
 public CommandExecutor(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #24
0
 public WPFRepoCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public StandardCommand(ICommandOnExecute onExecuteMethod)
 {
     _execute = onExecuteMethod;
 }
Exemple #26
0
 public RelayCommand(ICommandOnExecute onExecuteMethod) :
     this(onExecuteMethod, (object parameter) => { return(true); })
 {
 }
Exemple #27
0
 public AllCustomerViewModelCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #28
0
 public SRRelayAsyncCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canexecute = onCanExecuteMethod;
 }
Exemple #29
0
 public ActionCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
Exemple #30
0
 public CommandeCaseClick(ICommandOnExecute commmandOnExecute, ICommandOnCanExecute commandOnCanExecute)
 {
     onExecute  = commmandOnExecute;
     canExecute = commandOnCanExecute;
 }
 public commandModel(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
 public RelayCommand(ICommandOnExecute onExecuteMethod, ICommandOnCanExecute onCanExecuteMethod = null)
 {
     _execute    = onExecuteMethod;
     _canExecute = onCanExecuteMethod;
 }
		public MyCommand(ICommandOnExecute onExecuteMethod)
		{
			_execute = onExecuteMethod;
		}