tbf/TestBenchFramework/BenchControl/TestMethods/RoiDetection/RoiDetectionFactory.cs

27 lines
920 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
using System.Collections.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.TestMethods.RoiDetection
{
public class RoiDetectionFactory : IComponentFactory
{
public string ClassName { get { return this.GetType().Namespace.Substring(17); } }
public void ResetStaticProperties() { RoiDetection.ResetStaticProperties(); }
public IComponent DummyComponent() { return new RoiDetection(); }
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new RoiDetection(cfg); }
public IComponentCfg DefaultConfig() { return new RoiDetectionCfg(this, this.GetType().Namespace.Substring(29)); }
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(typeof(RoiDetectionCfg), component, this);
}
}
}