IUserManager
using Relativity.DataExchange.Service;
using System;
using System.Data;
namespace kCura.WinEDDS.Service.Replacement
{
public interface IUserManager : IDisposable, IReLoginService
{
DataSet RetrieveAllAssignableInCase(int caseContextArtifactID);
bool Login(string emailAddress, string password);
string GenerateDistributedAuthenticationToken(bool retryOnFailure = true);
bool LoggedIn();
void Logout();
}
}