IJobTransferPathRepository
interface 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);
}
}