コード例 #1
0
 public BlogMlImporter(
     ArticulateTempFileSystem fileSystem,
     DisqusXmlExporter disqusXmlExporter,
     IContentTypeBaseServiceProvider contentTypeBaseServiceProvider,
     IContentService contentService,
     IContentTypeService contentTypeService,
     IUserService userService,
     ILogger logger,
     IDataTypeService dataTypeService,
     ISqlContext sqlContext,
     IScopeProvider scopeProvider,
     ILocalizationService localizationService)
 {
     _fileSystem        = fileSystem;
     _disqusXmlExporter = disqusXmlExporter;
     _contentTypeBaseServiceProvider = contentTypeBaseServiceProvider;
     _contentService      = contentService;
     _contentTypeService  = contentTypeService;
     _userService         = userService;
     _logger              = logger;
     _dataTypeService     = dataTypeService;
     _sqlContext          = sqlContext;
     _scopeProvider       = scopeProvider;
     _localizationService = localizationService;
 }
コード例 #2
0
 public BlogMlExporter(IUmbracoContextAccessor umbracoContextAccessor, ArticulateTempFileSystem fileSystem, IContentService contentService, IContentTypeService contentTypeService, IDataTypeService dataTypeService, ITagService tagService, ILogger logger)
 {
     _umbracoContextAccessor = umbracoContextAccessor;
     _fileSystem             = fileSystem;
     _contentService         = contentService;
     _contentTypeService     = contentTypeService;
     _dataTypeService        = dataTypeService;
     _tagService             = tagService;
     _logger = logger;
 }
コード例 #3
0
 public BlogMlImporter(ArticulateTempFileSystem fileSystem, DisqusXmlExporter disqusXmlExporter, IContentTypeBaseServiceProvider contentTypeBaseServiceProvider, IContentService contentService, IContentTypeService contentTypeService, IUserService userService, ILogger logger, IDataTypeService dataTypeService)
 {
     _fileSystem        = fileSystem;
     _disqusXmlExporter = disqusXmlExporter;
     _contentTypeBaseServiceProvider = contentTypeBaseServiceProvider;
     _contentService     = contentService;
     _contentTypeService = contentTypeService;
     _userService        = userService;
     _logger             = logger;
     _dataTypeService    = dataTypeService;
 }