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

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

added InputData to VectoRunData and implemented Initialize Method in...

added InputData to VectoRunData and implemented Initialize Method in AbstractCustomerReport and AbstractManufacturerReport
parent 22399ac8
No related branches found
No related tags found
No related merge requests found
......@@ -157,6 +157,9 @@ namespace TUGraz.VectoCore.Models.Simulation.Data
[JsonIgnore]
public IMultistageVIFInputData MultistageVIFInputData { get; internal set; }
[JsonIgnore]
public IDeclarationInputDataProvider InputData { get; internal set; }
public class AuxData
{
// ReSharper disable once InconsistentNaming
......
......@@ -29,7 +29,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.CustomerInformation
public void Initialize(VectoRunData modelData, List<List<FuelData.Entry>> fuelModes)
{
throw new NotImplementedException();
InitializeVehicleData(modelData.InputData);
}
public XDocument Report { get; protected set; }
......
......@@ -34,7 +34,7 @@ namespace TUGraz.VectoCore.OutputData.XML.DeclarationReports.ManufacturerReport.
public void Initialize(VectoRunData modelData, List<List<FuelData.Entry>> fuelModes)
{
throw new NotImplementedException();
InitializeVehicleData(modelData.InputData);
}
public XDocument Report { get; protected set; }
......
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