예제 #1
0
 public ScorocodeCollection(
     string id, string name, bool useDocsACL,
     ScorocodeACL ACL, ScorocodeTriggers triggers,
     List <ScorocodeField> fields, bool system, List <Index> indices, bool notify)
 {
     this.id         = id;
     this.name       = name;
     this.useDocsACL = useDocsACL;
     this.acl        = ACL;
     this.triggers   = triggers;
     this.fields     = fields;
     this.system     = system;
     this.indexes    = indices;
     this.notify     = notify;
 }
예제 #2
0
 public ScorocodeCollection setACL(ScorocodeACL ACL)
 {
     this.acl = ACL;
     return(this);
 }