Exemple #1
0
 public DeploymentInformationNode(Guid id, DateTimeOffset timestamp, IDeploymentInformationNode parent, string content)
 {
     this.id        = id;
     this.timestamp = timestamp;
     this.parent    = parent;
     this.children  = new DeploymentInformationNodeCollection(parent);
     this.content   = content;
 }
Exemple #2
0
 public DeploymentInformationNodeCollection(IDeploymentInformationNode parent)
 {
     this.parent = parent;
 }
Exemple #3
0
 public ActivityTracking(IDeploymentInformationNode node)
 {
     this.node = node;
 }