Relativity.DataExchange.Export.VolumeManagerV2.Repository.ILongTextRepository
namespace Relativity.DataExchange.Export.VolumeManagerV2.Repository
{
public interface ILongTextRepository
{
void Add(IList<LongText> longTexts);
IEnumerable<LongText> GetArtifactLongTexts(int artifactId);
LongText GetByLineNumber(int lineNumber);
IEnumerable<LongTextExportRequest> GetExportRequests();
LongText GetLongText(int artifactId, int fieldArtifactId);
IList<LongText> GetLongTexts();
string GetTextFileLocation(int artifactId, int fieldArtifactId);
}
}