/// /// Copyright (c) 2015-2016 Sensus Metering Systems /// using System.Collections.Generic; using TBF.BenchControl.Generic; namespace TBF.BenchControl.Modbus.QuidoRS { public class Factory : IComponentFactory { public string ClassName { get { return this.GetType().Namespace.Substring(17); } } public void ResetStaticProperties() { QuidoRS.ResetStaticProperties(); } public IComponent DummyComponent() { return new QuidoRS(); } public IComponent GetComponent(IComponentCfg cfg, IList components) { return new QuidoRS(cfg, components); } public IComponentCfg DefaultConfig() { return new QuidoRSCfg(this); } public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component) { return ComponentCfgBase.CreateFromDbEntity(QuidoRSCfg.Serializer, component, this); } } }