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