Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 01b588cb authored by Harald MARTINI's avatar Harald MARTINI
Browse files

added parameter to disable job type check in primarybus vecto rundata factory

parent 64103a1e
No related branches found
No related tags found
No related merge requests found
......@@ -18,8 +18,8 @@ namespace TUGraz.VectoCore.InputData.Reader.Impl
{
protected DeclarationDataAdapterPrimaryBus _dao = new DeclarationDataAdapterPrimaryBus();
public DeclarationModePrimaryBusVectoRunDataFactory(IDeclarationInputDataProvider dataProvider, IDeclarationReport report) :
base(dataProvider, report)
public DeclarationModePrimaryBusVectoRunDataFactory(IDeclarationInputDataProvider dataProvider, IDeclarationReport report, bool checkJobType = true) :
base(dataProvider, report, checkJobType)
{ }
#region Overrides of AbstractDeclarationVectoRunDataFactory
......
......@@ -23,7 +23,7 @@ namespace TUGraz.VectoMockup.Simulation.RundataFactories
{
public PrimaryBusMockupRunDataFactory(IDeclarationInputDataProvider dataProvider,
IDeclarationReport report) :
base(dataProvider, report)
base(dataProvider, report, false)
{ }
#region Overrides of AbstractDeclarationVectoRunDataFactory
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment