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