tbf/TestBenchFramework/BenchControl/Generic/IProcedureParams.cs

12 lines
323 B
C#
Raw Normal View History

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
namespace TBF.BenchControl.Generic
{
public interface IProcedureParams
{
void UpdateProcedureParams(string componentName, Entities.Procedure procedure);
TBF.Entities.ComponentProcedure ToDbEntity(string componentName, Entities.Procedure procedure);
}
}