You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,10 +51,9 @@ An example rule:
51
51
You can inject the rules into the Rules Engine by initiating an instance by using the following code -
52
52
53
53
```c#
54
-
varrulesEngine=newRulesEngine(workflow, logger);
54
+
varrulesEngine=newRulesEngine(workflow);
55
55
```
56
-
Here, *workflow* is a list of deserialized objects based on the schema explained above and *logger* is a custom logger instance made out of an [ILogger](https://github.com/microsoft/RulesEngine/wiki/Getting-Started#logger) instance.
57
-
56
+
Here, *workflow* is a list of deserialized objects based on the schema explained above
58
57
Once initialised, the Rules Engine needs to execute the rules for a given input. This can be done by calling the method `ExecuteAllRulesAsync`:
0 commit comments