Example #1
0
 public ContentService(IHtmlContentService htmlService, IContentHistoryService historyService)
 {
     this.htmlService    = htmlService;
     this.historyService = historyService;
 }
Example #2
0
 public ContentService(IHtmlContentService htmlService, IContentHistoryService historyService, IContentDraftService draftService)
 {
     this.htmlService = htmlService;
     this.historyService = historyService;
     this.draftService = draftService;
 }