public TestCommand(CommandOnExecute onExe, CommandOnCanExecute onCanExe) { _execute = onExe; _canExecute = onCanExe; }
public Command(CommandOnExecute onExecuteMethod, CommandOnCanExecute onCanExecuteMethod) { _execute = onExecuteMethod; _canExecute = onCanExecuteMethod; }
public Command(CommandOnExecute <T> onExecuteMethod, CommandOnCanExecute onCanExecuteMethod = null) { _execute = onExecuteMethod; _canExecute = onCanExecuteMethod; }