IServiceNotification
interface IServiceNotification
Represents an abstract object to provide notification updates when performing service-related operations.
namespace Relativity.DataExchange.Service
{
internal interface IServiceNotification
{
void NotifyError(string message);
void NotifyStatus(string message);
void NotifyWarning(string message);
}
}