IExporter
using kCura.WinEDDS.Exporters;
namespace kCura.WinEDDS
{
public interface IExporter : IExporterStatusNotification
{
int DocumentsExported { get; set; }
IUserNotification InteractionManager { get; set; }
bool ExportSearch();
}
}