예제 #1
0
 public ItemCreate(string createdBy, DateTime createdTS, string lastChangedBy, DateTime lastChangedTS, string pid, string id,
                   string version, string reprItem, string entityName, Attrs attrs, ResrsCreate resrs, Acl acl) : base()
 {
     this.createdBy     = createdBy;
     this.createdTS     = createdTS;
     this.lastChangedBy = lastChangedBy;
     this.lastChangedTS = lastChangedTS;
     this.pid           = pid;
     this.id            = id;
     this.version       = version;
     this.reprItem      = reprItem;
     this.entityName    = entityName;
     this.attrs         = attrs;
     this.resrs         = resrs;
     this.acl           = acl;
 }
예제 #2
0
 public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs) : this(entityName, attrs, resrs, null)
 {
 }
예제 #3
0
 public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs, Acl acl) : this("", DateTime.Today, "", DateTime.Today, "", "", "", "", entityName, attrs, resrs, acl)
 {
 }
예제 #4
0
 public Item(string entityName, Attrs attrs, Resrs resrs) : this(entityName, attrs, resrs, new Acl(""))
 {
 }
예제 #5
0
 public Entity(string name, string desc, string root, string search, string resEnabled, Attrs attrs, Acls acls) : base()
 {
     this.name       = name;
     this.desc       = desc;
     this.root       = root;
     this.search     = search;
     this.resEnabled = resEnabled;
     this.attrs      = attrs;
     this.acls       = acls;
 }