Exemple #1
0
 public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs, Acl acl) : this("", DateTime.Today, "", DateTime.Today, "", "", "", "", entityName, attrs, resrs, acl)
 {
 }
Exemple #2
0
 public ItemCreate(string entityName, Attrs attrs, ResrsCreate resrs) : this(entityName, attrs, resrs, null)
 {
 }
Exemple #3
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;
 }