Ejemplo n.º 1
0
 public DefaultFileFieldValueConverter(
     IEnterspeedSitecoreFieldService fieldService,
     IEnterspeedUrlService urlService)
 {
     _fieldService = fieldService;
     _urlService   = urlService;
 }
 public DefaultGeneralLinkFieldValueConverter(
     IEnterspeedSitecoreFieldService fieldService,
     IEnterspeedUrlService urlService,
     IEnterspeedIdentityService enterspeedIdentityService)
 {
     _fieldService = fieldService;
     _urlService   = urlService;
     _enterspeedIdentityService = enterspeedIdentityService;
 }
Ejemplo n.º 3
0
 public SitecoreContentEntityModelMapper(
     IEnterspeedIdentityService enterspeedIdentityService,
     IEnterspeedPropertyService enterspeedPropertyService,
     IEnterspeedUrlService urlService,
     IEnterspeedConfigurationService enterspeedConfigurationService)
 {
     _enterspeedIdentityService = enterspeedIdentityService;
     _enterspeedPropertyService = enterspeedPropertyService;
     _urlService = urlService;
     _enterspeedConfigurationService = enterspeedConfigurationService;
 }