tbf/TestBenchFramework/BenchControl/Various/ErrorFlags/Factory.cs

27 lines
860 B
C#

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