Пример #1
0
 public Item(string createdBy, DateTime createdTS, string lastChangedBy, DateTime lastChangedTS, string pid, string id,
             string version, string reprItem, string entityName, Attrs attrs, Resrs 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 Item(string entityName, Attrs attrs, Resrs resrs) : this(entityName, attrs, resrs, new Acl(""))
 {
 }
Пример #3
0
 public Item(string entityName, Attrs attrs, Resrs resrs, Acl acl) : this("", DateTime.Today, "", DateTime.Today, "", "", "", "", entityName, attrs, resrs, acl)
 {
 }