コード例 #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;
 }
コード例 #3
0
 public SectionContentCallToActionService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
コード例 #4
0
 public SectionContentParagraphService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
コード例 #5
0
 public SectionContentProviderService(IEnumerable <ISectionContentService> sectionContentServices, IApplicationContext applicationContext, SectionDbContext dbContext)
     : base(applicationContext, dbContext)
 {
     _sectionContentServices = sectionContentServices;
 }
コード例 #6
0
 public SectionContentTitleService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }
コード例 #7
0
 public SectionTemplateService(IApplicationContext applicationContext, SectionDbContext dbContext) : base(applicationContext, dbContext)
 {
 }