12 lines
288 B
C#
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);
|
|
}
|
|
}
|