示例#1
0
 protected BaseRuleAsync()
 {
     Identity = new RuleIdentity(Guid.NewGuid()
                                 .ToString());
 }
示例#2
0
 protected BaseRuleAsync(string code)
 {
     Identity = new RuleIdentity(code);
 }
示例#3
0
 private bool Equals(RuleIdentity other)
 {
     return(string.Equals(Code, other.Code));
 }