ITimeKeeperManager
A manager class that provides a functionality to capture time and report duration.
namespace kCura.WinEDDS
{
public interface ITimeKeeperManager
{
ImportTimeKeeperBase CaptureTime(string eventKey);
void GenerateCsvReportItemsAsRows(string filenameSuffix, string directory);
}
}