Relativity.Transfer.JobTransferPathRepository
namespace Relativity.Transfer
{
internal class JobTransferPathRepository : IJobTransferPathRepository
{
public long Count { get; }
public JobTransferPathRepository(ITransferPathKeyGenerator primaryKeyGenerator);
public JobTransferPathRepository(ITransferPathKeyGenerator primaryKeyGenerator, ITransferPathKeyGenerator alternateKeyGenerator);
public void Clear();
public void Delete(JobTransferPath path);
public void Delete(TransferPath path);
public JobTransferPath SelectByKey(TransferPath path);
public JobTransferPath SelectByKey(string path);
public ICollection<JobTransferPath> SelectAll();
public void Upsert(JobTransferPath path);
public bool Exists(JobTransferPath jobPath);
}
}