Ejemplo n.º 1
0
 protected ContentMigrationController(ISitecoreAccessService sitecore, IScsRegistrationService registration, IContentMigrationManagerService migrationManager, IRemoteContentService remoteContent)
 {
     _sitecore         = sitecore;
     _registration     = registration;
     _migrationManager = migrationManager;
     _remoteContent    = remoteContent;
 }
Ejemplo n.º 2
0
 public ContentMigrationController()
 {
     _sitecore         = Bootstrap.Container.Resolve <ISitecoreAccessService>();
     _registration     = Bootstrap.Container.Resolve <IScsRegistrationService>();
     _migrationManager = Bootstrap.Container.Resolve <IContentMigrationManagerService>();
     _remoteContent    = Bootstrap.Container.Resolve <IRemoteContentService>();
 }
Ejemplo n.º 3
0
        public ContentItemInstaller()
        {
            var deserializer = new DefaultDeserializer(_logger, new DefaultFieldFilter());

            _scDatastore = new SitecoreDataStore(deserializer);
            _sitecore    = Bootstrap.Container.Resolve <ISitecoreAccessService>();
        }
Ejemplo n.º 4
0
 public ContentMigration(IContentItemPuller puller, IContentItemInstaller installer, IRemoteContentService remoteContent, ISitecoreAccessService sitecoreAccess, IScsRegistrationService registration)
 {
     _puller         = puller;
     _installer      = installer;
     _remoteContent  = remoteContent;
     _sitecoreAccess = sitecoreAccess;
     _registration   = registration;
 }
Ejemplo n.º 5
0
 public ContentMigration()
 {
     _remoteContent  = Bootstrap.Container.Resolve <IRemoteContentService>();
     _sitecoreAccess = Bootstrap.Container.Resolve <ISitecoreAccessService>();
     _registration   = Bootstrap.Container.Resolve <IScsRegistrationService>();
     _puller         = new ContentItemPuller();
     _installer      = new ContentItemInstaller();
 }
Ejemplo n.º 6
0
 public ContentItemInstaller(ISitecoreAccessService sitecore, IDataStore dataStore)
 {
     _scDatastore = dataStore;
     _sitecore    = sitecore;
 }