tbf/TestBenchFramework/BenchControl/Generic/ITestParams.cs
2015-04-15 20:32:56 +02:00

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);
}
}