15 lines
323 B
C#
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);
|
|
}
|
|
}
|