Boilerplate code reduced from factories, GetComponent() and GetControl() added to cfg-s

This commit is contained in:
Milan Hanajik
2015-01-02 19:14:19 +01:00
parent 94de991bf6
commit f2005bbf56
70 changed files with 367 additions and 708 deletions
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using TBF.BenchControl.Generic;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
{
@@ -7,30 +6,13 @@ namespace TBF.BenchControl.TestMethods.ReferenceFlowmeterCalibration
{
public string ClassName { get { return "ReferenceFlowmeterCalibration"; } }
/// <summary>Max. number of components of this class in the system</summary>
public int MaxCount { get { return 1; } }
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }
public IComponentCfg DefaultConfig(IList<Entities.Component> components)
{
return new TestMethodCfg(this);
}
public IComponentCfgCtrl CreateCfgCtrl()
{
return new TestMethodCfgCtrl();
}
public IComponent ComponentFromCmpntCfg(IComponentCfg config, IList<Generic.IComponent> components)
{
return new TestMethod((TestMethodCfg)config);
}
public IComponentCfg DefaultConfig() { return new TestMethodCfg(this); }
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
{
return ComponentCfgBase.CreateFromDbEntity(typeof(TestMethodCfg), component, this);
}
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }
}
}