/// /// Copyright (c) 2020 Sensus Slovensko a.s. /// using System.Collections.Generic; using TBF.BenchControl.Generic; namespace TBF.BenchControl.Modbus.WaterAnalyzer { public class Factory : IComponentFactory { public string ClassName { get { return this.GetType().Namespace.Substring(17); } } public void ResetStaticProperties() { Analyzer.ResetStaticProperties(); } public IComponent DummyComponent() { return new Analyzer(); } public IComponent GetComponent(IComponentCfg cfg, IList components) { return new Analyzer(cfg, components); } public IComponentCfg DefaultConfig() { return new AnalyzerCfg(this.GetType().Namespace.Substring(24), this); } public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component) { return ComponentCfgBase.CreateFromDbEntity(AnalyzerCfg.Serializer, component, this); } } }