예제 #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));
 }