Exemple #1
0
 public MarkdownOutlineTagger(Func <ArtifactCollection> artifactsGetter, OutlineTagCreator tagCreator)
 {
     this.artifactsGetter = artifactsGetter;
     this.tagCreator      = tagCreator;
     // TODO: Forward events
 }
Exemple #2
0
 public MarkdownOutlineTagger(ArtifactCollection artifacts, OutlineTagCreator tagCreator) : this(() => artifacts, tagCreator)
 {
 }