tbf/TBF/Rig/Generic/ITestParams.cs
2021-10-26 19:38:09 +02:00

15 lines
323 B
C#

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