31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
///
|
|
/// Copyright (c) 2020 Sensus Slovensko a.s.
|
|
///
|
|
using System.Collections.Generic;
|
|
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.ControlBoard.Papouch
|
|
{
|
|
public class CBoardFactory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return this.GetType().Namespace.Substring(17); } }
|
|
public override string ToString() { return ClassName; }
|
|
|
|
public void ResetStaticProperties() { CBoard.ResetStaticProperties(); }
|
|
|
|
/// <summary>Max. number of components of this class in the system</summary>
|
|
public int MaxCount { get { return 1; } }
|
|
|
|
public IComponent DummyComponent() { return new CBoard(); }
|
|
|
|
public IComponent GetComponent(IComponentCfg cfg, IList<IComponent> components) { return new CBoard(cfg, components); }
|
|
|
|
public IComponentCfg DefaultConfig() { return new CBoardCfg(this); }
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Config.Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(CBoardCfg.Serializer, component, this);
|
|
}
|
|
}
|
|
}
|