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