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