<PackageReference Include="Relativity.Server.Transfer.SDK" Version="24000.0.1" />

IJobTransferPathRepository

using System.Collections.Generic; namespace Relativity.Transfer { internal interface IJobTransferPathRepository { long Count { get; } void Clear(); void Delete(JobTransferPath path); void Delete(TransferPath path); JobTransferPath SelectByKey(TransferPath path); JobTransferPath SelectByKey(string path); ICollection<JobTransferPath> SelectAll(); void Upsert(JobTransferPath path); bool Exists(JobTransferPath jobPath); } }