File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Nuget package: [](https://w
61
61
### Initialise RulesEngine with the workflow:
62
62
``` c#
63
63
var workflowRules = // Get list of workflow rules declared in the json
64
- var re = new RulesEngine .RulesEngine (workflowRules , null );
64
+ var re = new RulesEngine .RulesEngine (workflowRules );
65
65
```
66
66
67
67
### Execute the workflow rules with input:
@@ -102,7 +102,7 @@ It is possible to use a custom name in rules by passing input as `RuleParameter`
102
102
Now we can call rulesEngine with the custom names:
103
103
``` c#
104
104
var workflowRules = // Get list of workflow rules declared in the json
105
- var re = new RulesEngine .RulesEngine (workflowRules , null );
105
+ var re = new RulesEngine .RulesEngine (workflowRules );
106
106
107
107
108
108
// Declare input1,input2,input3
@@ -444,7 +444,7 @@ Actions can have async code as well
444
444
}
445
445
};
446
446
447
- var re = new RulesEngine (workflowRules ,logger , reSettings );
447
+ var re = new RulesEngine (workflowRules ,reSettings );
448
448
```
449
449
3. You can now use the name you registered in the Rules json in success or failure actions
450
450
```jsonc
You can’t perform that action at this time.
0 commit comments