2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-09-06 15:34:26 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TestMethodFactory : IComponentFactory
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ClassName { get { return "ReferenceFlowmeterCalibration"; } }
|
|
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }
|
2014-09-06 15:34:26 +00:00
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public IComponentCfg DefaultConfig() { return new TestMethodCfg(this); }
|
2014-09-06 15:34:26 +00:00
|
|
|
|
|
|
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(TestMethodCfg), component, this);
|
2014-09-06 15:34:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|