2015-01-02 18:14:19 +00:00
|
|
|
|
using TBF.BenchControl.Generic;
|
2014-09-16 14:09:07 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.DataEntry.WMStates
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EntryFormFactory : IComponentFactory
|
|
|
|
|
|
{
|
|
|
|
|
|
public string ClassName { get { return "Generic-WM-States-Form"; } }
|
|
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public void ResetStaticProperties() { EntryForm.ResetStaticProperties(); }
|
2014-09-16 14:09:07 +00:00
|
|
|
|
|
2015-01-02 18:14:19 +00:00
|
|
|
|
public IComponentCfg DefaultConfig() { return new EntryFormCfg(this); }
|
2014-09-16 14:09:07 +00:00
|
|
|
|
|
|
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
|
|
|
|
{
|
2014-12-29 15:00:27 +00:00
|
|
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(EntryFormCfg), component, this);
|
2014-09-16 14:09:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|