Esempio n. 1
0
 public Modification(Guid sessionId,
                     string metaInfo, string key, ModiType type, string name = null, string pre = null, string post = null)
 {
     _SessionId = sessionId;
     _MetaInfo  = metaInfo;
     _Key       = key;
     _Type      = type;
     _Name      = name ?? string.Empty;
     _Pre       = pre ?? string.Empty;
     _Post      = post ?? string.Empty;
 }
Esempio n. 2
0
 public Modification(string metaInfo, string key, ModiType type, string name = null, string pre = null, string post = null) :
     this(Guid.NewGuid(), metaInfo, key, type, name, pre, post)
 {
 }