19 lines
596 B
C#
19 lines
596 B
C#
|
|
using TBF.BenchControl.Generic;
|
|||
|
|
|
|||
|
|
namespace TBF.BenchControl.Elde.RegulValveTandem
|
|||
|
|
{
|
|||
|
|
public class RegulValveTandemFactory : IComponentFactory
|
|||
|
|
{
|
|||
|
|
public string ClassName { get { return "RegulationValveTandem"; } }
|
|||
|
|
|
|||
|
|
public void ResetStaticProperties() { RegulValveTandem.ResetStaticProperties(); }
|
|||
|
|
|
|||
|
|
public IComponentCfg DefaultConfig() { return new RegulValveTandemCfg(this); }
|
|||
|
|
|
|||
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|||
|
|
{
|
|||
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(RegulValveTandemCfg), component, this);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|