Methods CreateDbEntity and CreateFromDbEntity moved from XyzCfg to ComponentCfgBase, factories modified accordingly.

This commit is contained in:
Milan Hanajik
2014-12-29 18:33:27 +01:00
parent 8ef0cea1ff
commit 0ac7ba05d6
67 changed files with 540 additions and 1266 deletions
@@ -17,7 +17,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
public IComponentCfg DefaultConfig(IList<Entities.Component> components)
{
return new TestMethodCfg(this, "FlyingStartCollection");
return new TestMethodCfg(this);
}
public IComponentCfgCtrl CreateCfgCtrl()
@@ -32,7 +32,7 @@ namespace TBF.BenchControl.TestMethods.FlyingStartCollectionMethod
public IComponentCfg CmpntCfgFromCmpntEntity(Entities.Component component)
{
return TestMethodCfg.CreateFromDbEntity(component, this);
return ComponentCfgBase.CreateFromDbEntity(typeof(TestMethodCfg), component, this);
}
public void ResetStaticProperties() { TestMethod.ResetStaticProperties(); }