Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make consistent singlar/plural names of instances to avoid downstream… #193

Merged
merged 21 commits into from
Aug 13, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleanup
Alex Reich authored and Alex Reich committed Jul 29, 2021
commit c84725191019eb29c121aa8908f1b0d9931a5d11
8 changes: 4 additions & 4 deletions demo/DemoApp/BasicDemo.cs
Original file line number Diff line number Diff line change
@@ -15,8 +15,8 @@ public void Run()
{
Console.WriteLine($"Running {nameof(BasicDemo)}....");
List<Workflow> Workflow = new List<Workflow>();
Workflow workflowRule = new Workflow();
workflowRule.WorkflowName = "Test Workflow Rule 1";
Workflow workflow = new Workflow();
workflow.WorkflowName = "Test Workflow Rule 1";

List<Rule> rules = new List<Rule>();

@@ -29,9 +29,9 @@ public void Run()

rules.Add(rule);

workflowRule.Rules = rules;
workflow.Rules = rules;

Workflow.Add(workflowRule);
Workflow.Add(workflow);

var bre = new RulesEngine.RulesEngine(Workflow.ToArray(), null);