public ReadOnlyEntryRule(EntryRule source)
 {
     Id      = source.Id;
     _source = source;
 }
示例#2
0
 public static ReadOnlyEntryRule ToReadOnly(this EntryRule self)
 {
     return(new ReadOnlyEntryRule(self));
 }