Ejemplo n.º 1
0
 public JekyllMarkdownDocument(
     string path, string markdownContent, JekyllSiteContext siteContext, IEnumerable <FileReference> associatedFiles,
     IDocumentFactory documentFactory, IEventAggregator eventAggregator, IDialogService dialogService, IFileSystem fileSystem)
     : base(path, markdownContent, siteContext, associatedFiles, documentFactory, eventAggregator, dialogService, fileSystem)
 {
     this.siteContext = siteContext;
 }
Ejemplo n.º 2
0
 public JekyllMarkdownDocument(
     string path, string markdownContent, JekyllSiteContext siteContext,
     IDocumentFactory documentFactory, IEventAggregator eventAggregator, IDialogService dialogService)
     : base(path, markdownContent, siteContext, documentFactory, eventAggregator, dialogService)
 {
     this.siteContext = siteContext;
 }