tbf/TBF/BenchControl/DataEntry/Single/EntryForm.cs

21 lines
325 B
C#
Raw Normal View History

2019-01-15 20:51:11 +00:00
///
/// Copyright (c) 2018 Sensus Slovensko a.s.
///
using TBF.BenchControl.GenericDevices;
namespace TBF.BenchControl.DataEntry.Single
{
public class EntryForm : EntryFormNoStartEnd, IHasWMStatesForm
{
public EntryForm()
: base()
{
}
public EntryForm(Generic.IComponentCfg cfg)
: base(cfg)
{
}
}
}