Пример #1
0
 public SectionWidgetService(IWidgetBasePartService widgetService, ISectionGroupService sectionGroupService,
                             ISectionContentProviderService sectionContentProviderService, ISectionTemplateService sectionTemplateService,
                             IApplicationContext applicationContext, SectionDbContext dbContext)
     : base(widgetService, applicationContext, dbContext)
 {
     _sectionGroupService           = sectionGroupService;
     _sectionContentProviderService = sectionContentProviderService;
     _sectionTemplateService        = sectionTemplateService;
 }
Пример #2
0
 public SectionGroupService(ISectionContentProviderService sectionContentProviderService,
                            IPluginLoader pluginLoader, IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
     _sectionContentProviderService = sectionContentProviderService;
     _pluginLoader = pluginLoader;
 }
 public SectionContentCallToActionService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
 public SectionContentParagraphService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
 public SectionContentProviderService(IEnumerable <ISectionContentService> sectionContentServices, IApplicationContext applicationContext, SectionDbContext dbContext)
     : base(applicationContext, dbContext)
 {
     _sectionContentServices = sectionContentServices;
 }
 public SectionContentTitleService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
 public SectionTemplateService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }