tbf/TBF/BenchControl/Generic/ITestParams.cs

15 lines
332 B
C#

///
/// Copyright (c) 2013-2018 Sensus Slovensko a.s.
///
using Config.Entities;
namespace TBF.BenchControl.Generic
{
public interface ITestParams
{
void UpdateFromDbEntity(ComponentTest dbEntity);
void FromDbEntity(string componentName, Test test);
ComponentTest ToDbEntity(string componentName, Test test);
}
}