// GET: /HtmlContent/
 public HtmlContentController(IHtmlContentService service,
     IApplicationService applicationService, 
     ISettingService settingService)
 {
     _contentService = service;
     _applicationService = applicationService;
     _settingService = settingService;
 }
Exemple #2
0
 public ContentService(IHtmlContentService htmlService, IContentHistoryService historyService)
 {
     this.htmlService    = htmlService;
     this.historyService = historyService;
 }
 public AjaxTestController(IHtmlContentService service)
 {
     this._service = service;
 }
Exemple #4
0
 public ContentService(IHtmlContentService htmlService, IContentHistoryService historyService, IContentDraftService draftService)
 {
     this.htmlService = htmlService;
     this.historyService = historyService;
     this.draftService = draftService;
 }
Exemple #5
0
 public PageService(IUnitOfWork unitOfWork, IHtmlContentService htmlContentService)
 {
     _unitOfWork         = unitOfWork;
     _htmlContentService = htmlContentService;
 }
 public HtmlContentController(IHtmlContentService htmlContentService)
 {
     _htmlContentService = htmlContentService;
 }
Exemple #7
0
 //refactor to di
 public HtmlContentController(IHtmlContentService service)
 {
     _service = service;
 }
 //
 // GET: /Page/
 public PageController(IHtmlContentService contentService)
 {
     this._contentService = contentService;
 }