19 lines
531 B
C#
19 lines
531 B
C#
using TBF.BenchControl.Generic;
|
|
|
|
namespace TBF.BenchControl.DataEntry.Munich3
|
|
{
|
|
public class EntryFormFactory : IComponentFactory
|
|
{
|
|
public string ClassName { get { return "DataEntryForm-3"; } }
|
|
|
|
public void ResetStaticProperties() { EntryForm.ResetStaticProperties(); }
|
|
|
|
public IComponentCfg DefaultConfig() { return new EntryFormCfg(this); }
|
|
|
|
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
|
|
{
|
|
return ComponentCfgBase.CreateFromDbEntity(typeof(EntryFormCfg), component, this);
|
|
}
|
|
}
|
|
}
|