27 lines
833 B
C#
27 lines
833 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.Elde.CoverTest
|
|
{
|
|
public class Factory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return "Elde.CoverTest"; } }
|
|
|
|
public void ResetStaticProperties() { CoverTest.ResetStaticProperties(); }
|
|
|
|
public IComponent DummyComponent() { return new CoverTest(); }
|
|
|
|
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new CoverTest(cfg, components); }
|
|
|
|
public IComponentCfg DefaultConfig() { return new CoverTestCfg(this); }
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(CoverTestCfg), component, this);
|
|
}
|
|
}
|
|
}
|