14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
using DTS.Common.Base;
|
|
using DTS.Common.Events;
|
|
|
|
// ReSharper disable CheckNamespace
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ITestDataSeriesView : IBaseView
|
|
{
|
|
bool SaveReportToPDF(string directory);
|
|
bool SaveReportToCSV(string directory);
|
|
}
|
|
}
|