Пример #1
0
 public ExampleComponent(
     IContentBlockDefinitionRepository definitions,
     PropertyEditorCollection propertyEditors,
     IDataTypeService dataTypeService,
     IContentTypeService contentTypeService,
     IContentBlockCategoryRepository categoryRepository
     )
 {
     _definitions        = definitions;
     _propertyEditors    = propertyEditors;
     _dataTypeService    = dataTypeService;
     _contentTypeService = contentTypeService;
     _categoryRepository = categoryRepository;
 }
Пример #2
0
 public ContentBlocksConfiguration(IContentBlockDefinitionRepository definitions, IContentBlockCategoryRepository categories)
 {
     _definitions = definitions;
     _categories  = categories;
 }
Пример #3
0
 public ContentBlocksDefinitionApiController(IContentBlockDefinitionRepository definitionRepository, IContentBlockCategoryRepository categoryRepository)
 {
     _definitionRepository = definitionRepository;
     _categoryRepository   = categoryRepository;
 }
 public DemoContentBlockCategorySetUpComponent(IContentBlockCategoryRepository contentBlockCategoryRepository)
 {
     _contentBlockCategoryRepository = contentBlockCategoryRepository;
 }