Files
tbf/TestBenchFramework/BenchControl/Generic/ITestParams.cs
T

12 lines
288 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TBF.BenchControl.Generic
{
public interface ITestParams
{
void UpdateTestParams(string componentName, Entities.Test test);
TBF.Entities.ComponentTest ToDbEntity(string componentName, Entities.Test test);
}
}