public SuperSimpleCommand(Action executeMethod) { this.executeMethod = executeMethod; this.canExecuteMethod = () => { return(true); }; }
public SuperSimpleCommand(Action executeMethod) { this.executeMethod = executeMethod; this.canExecuteMethod = () => { return true; }; }
public SuperSimpleCommand(SuperSimpleCanExecuteDelegate canExecuteMethod, Action executeMethod) { this.executeMethod = executeMethod; this.canExecuteMethod = canExecuteMethod; }