Exemplo n.º 1
0
        public Integration(string pathToRemoteFileStore)
        {
            _pathToRemoteFileStore = pathToRemoteFileStore;

            var factory = new Factory(_pathToRemoteFileStore);
            _remoteSyncTable = factory.Build_remote_sync_table();
            _remoteFileStore = factory.Build_remote_file_store();
        }
Exemplo n.º 2
0
        public Integration(string remoteRepoPath)
        {
            _remoteRepoPath = remoteRepoPath;

            _ui = new Ui();

            var factory = new Factory(remoteRepoPath);
            _remoteSyncTable = factory.Build_remote_sync_table();
            _remoteFileStore = factory.Build_remote_file_store();
        }