Rule - NMehralizadeh/RuleEngineCore GitHub Wiki
Rule object helps you to execute your rule by pass facts into execute method. You just need to make an instantiate of Rule class and set new instance of your rule in the constructor. Then call execute method and pass facts object.
Example
Rule MyRule = new Rule(new IdentificationRule());
MyRule.Execute(facts);