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; }
public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs) : this(entityName, attrs, resrs, null) { }
public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs, Acl acl) : this("", DateTime.Today, "", DateTime.Today, "", "", "", "", entityName, attrs, resrs, acl) { }
public Item(string entityName, Attrs attrs, Resrs resrs) : this(entityName, attrs, resrs, new Acl("")) { }
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; }