kCura.WinEDDS.Service.Replacement.KeplerFieldQuery
namespace kCura.WinEDDS.Service.Replacement
{
public class KeplerFieldQuery : KeplerManager, IFieldQuery
{
public KeplerFieldQuery(IServiceProxyFactory serviceProxyFactory, IServiceExceptionMapper exceptionMapper, Func<string> correlationIdFunc);
public DataSet RetrieveAllMappable(int caseContextArtifactID, int artifactTypeID);
public DataSet RetrievePotentialBeginBatesFields(int caseContextArtifactID);
public bool IsFieldIndexed(int caseContextArtifactID, int fieldArtifactID);
public DocumentFieldCollection RetrieveAllAsDocumentFieldCollection(int caseContextArtifactID, int artifactTypeID);
public Field[] RetrieveAllAsArray(int caseContextArtifactID, int artifactTypeID, bool includeUnmappable = false);
}
}