public SitecoreDictionaryEntityModelMapper(
     IEnterspeedIdentityService enterspeedIdentityService,
     IEnterspeedPropertyService enterspeedPropertyService)
 {
     _enterspeedIdentityService = enterspeedIdentityService;
     _enterspeedPropertyService = enterspeedPropertyService;
 }
Example #2
0
 public SitecoreRenderingEntityModelMapper(
     IEnterspeedIdentityService enterspeedIdentityService,
     IEnterspeedPropertyService enterspeedPropertyService)
 {
     _enterspeedIdentityService = enterspeedIdentityService;
     _enterspeedPropertyService = enterspeedPropertyService;
 }
Example #3
0
 public SitecoreContentEntityModelMapper(
     IEnterspeedIdentityService enterspeedIdentityService,
     IEnterspeedPropertyService enterspeedPropertyService,
     IEnterspeedUrlService urlService,
     IEnterspeedConfigurationService enterspeedConfigurationService)
 {
     _enterspeedIdentityService = enterspeedIdentityService;
     _enterspeedPropertyService = enterspeedPropertyService;
     _urlService = urlService;
     _enterspeedConfigurationService = enterspeedConfigurationService;
 }
Example #4
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);
 }
Example #5
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;
 }