12 lines
257 B
C#
12 lines
257 B
C#
using DTS.Common.Base;
|
|
|
|
namespace DTS.Common.Interface
|
|
{
|
|
public interface ISummaryView : IBaseView
|
|
{
|
|
void UpdateTestIds(string[] serializedValues);
|
|
string GetTestId();
|
|
void SetTestName(string testName);
|
|
}
|
|
}
|