Beispiel #1
0
 public DefaultMultiUrlPickerPropertyValueConverter(
     IUmbracoContextFactory umbracoContextFactory,
     IEntityIdentityService entityIdentityService,
     IUmbracoMediaUrlProvider mediaUrlProvider)
 {
     _umbracoContextFactory = umbracoContextFactory;
     _entityIdentityService = entityIdentityService;
     _mediaUrlProvider      = mediaUrlProvider;
 }
Beispiel #2
0
 public UmbracoContentEntity(
     IPublishedContent content,
     IEnterspeedPropertyService propertyService,
     IEntityIdentityService entityIdentityService,
     string[] redirects,
     string culture = null)
 {
     _content = content;
     _culture = culture;
     _entityIdentityService = entityIdentityService;
     Redirects  = redirects;
     Properties = propertyService.GetProperties(_content, _culture);
 }
Beispiel #3
0
 public EnterspeedJobHandler(
     IEnterspeedJobRepository enterspeedJobRepository,
     IUmbracoContextFactory umbracoContextFactory,
     IEnterspeedPropertyService enterspeedPropertyService,
     ILogger logger,
     IRedirectUrlService redirectUrlService,
     IUmbracoUrlService umbracoUrlService,
     IEnterspeedIngestService enterspeedIngestService,
     IEntityIdentityService entityIdentityService,
     IUmbracoRedirectsService redirectsService)
 {
     _enterspeedJobRepository   = enterspeedJobRepository;
     _umbracoContextFactory     = umbracoContextFactory;
     _enterspeedPropertyService = enterspeedPropertyService;
     _logger                  = logger;
     _redirectUrlService      = redirectUrlService;
     _umbracoUrlService       = umbracoUrlService;
     _enterspeedIngestService = enterspeedIngestService;
     _entityIdentityService   = entityIdentityService;
     _redirectsService        = redirectsService;
 }
Beispiel #4
0
 public EnterspeedPropertyService(EnterspeedPropertyValueConverterCollection converterCollection)
 {
     _converterCollection = converterCollection;
     _identityService     = Current.Factory.GetInstance <IEntityIdentityService>();
 }
Beispiel #5
0
 public DefaultContentPickerPropertyValueConverter(
     IEntityIdentityService entityIdentityService)
 {
     _entityIdentityService = entityIdentityService;
 }
 public DefaultMultiNodeTreePickerPropertyValueConverter(IEntityIdentityService entityIdentityService)
 {
     _entityIdentityService = entityIdentityService;
 }