diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-31 19:39:18 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-31 19:39:18 +0200 |
| commit | 62a1005488e04d8db62be5ef252328d34e1aec0f (patch) | |
| tree | 5e7bb6b2d706b13f04e822b79512785dd1555b0e /Software/Visual_Studio/Tango.Core/Commands | |
| parent | fcbc4e2fad831e0e9bc972df86d155311f9f83a4 (diff) | |
| download | Tango-62a1005488e04d8db62be5ef252328d34e1aec0f.tar.gz Tango-62a1005488e04d8db62be5ef252328d34e1aec0f.zip | |
Added FormulaCalculatorBase.
Added Indexing for JOBS and SEGMENTS tables.
Started working on "Running Job"...
Diffstat (limited to 'Software/Visual_Studio/Tango.Core/Commands')
| -rw-r--r-- | Software/Visual_Studio/Tango.Core/Commands/RelayCommand.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Core/Commands/RelayCommand.cs b/Software/Visual_Studio/Tango.Core/Commands/RelayCommand.cs index 16af1651c..fecf8a5de 100644 --- a/Software/Visual_Studio/Tango.Core/Commands/RelayCommand.cs +++ b/Software/Visual_Studio/Tango.Core/Commands/RelayCommand.cs @@ -34,6 +34,11 @@ namespace Tango.Core.Commands } + public RelayCommand(Action execute, Func<bool> canExecute) : this((x) => execute(), (x) => canExecute()) + { + + } + public RelayCommand(Action execute, Predicate<object> canExecute) : this((x) => execute(), canExecute) { |
