<PackageReference Include="Relativity.Server.Import.SDK" Version="2.9.2" />

DirectoryManager

using kCura.WinEDDS.Exporters; namespace Relativity.DataExchange.Export.VolumeManagerV2.Directories { public class DirectoryManager : IDirectoryManager { private readonly VolumeManager _volumeManager; private readonly SubdirectoryManager _subdirectoryManager; public DirectoryManager(VolumeManager volumeManager, SubdirectoryManager subdirectoryManager) { _volumeManager = volumeManager; _subdirectoryManager = subdirectoryManager; } public void MoveNext(VolumePredictions volumePredictions) { _volumeManager.MoveNext(volumePredictions); _subdirectoryManager.MoveNext(volumePredictions); } } }