Exemplo n.º 1
0
 public ChangeSet(string author, string version, string comment, string modifiedTime, Change changes)
 {
     _Author = author;
     _Version = version;
     _Comment = comment;
     _ModifiedTime = modifiedTime;
     this.AddChange(changes);
 }
Exemplo n.º 2
0
 public ChangeSet(string author, string version, string comment, string modifiedTime, Change[] changes)
 {
     _Author = author;
     _Version = version;
     _Comment = comment;
     _ModifiedTime = modifiedTime;
     _Changes = new List<Change>(changes);
 }
Exemplo n.º 3
0
 public void AddChange(Change change)
 {
     if (_Changes == null)
         _Changes = new List<Change>();
     this._Changes.Add(change);
 }