From 08c6b9532f130292d44d6f3cf8dceb367088c479 Mon Sep 17 00:00:00 2001 From: "VKMTHD\\haraldmartini" <harald.martini@student.tugraz.at> Date: Wed, 11 Jan 2023 09:20:18 +0100 Subject: [PATCH] use IIEPCDeclarationInput data in IEPCGearboxInputData helper class --- .../Reader/DataObjectAdapter/EngineeringDataAdapter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/EngineeringDataAdapter.cs b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/EngineeringDataAdapter.cs index d18eb2d5f5..08fe0ca853 100644 --- a/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/EngineeringDataAdapter.cs +++ b/VectoCore/VectoCore/InputData/Reader/DataObjectAdapter/EngineeringDataAdapter.cs @@ -1563,10 +1563,10 @@ namespace TUGraz.VectoCore.InputData.Reader.DataObjectAdapter public class IEPCGearboxInputData : IGearboxDeclarationInputData { - protected readonly IIEPCEngineeringInputData _iepc; + protected readonly IIEPCDeclarationInputData _iepc; private IList<ITransmissionInputData> _gears; - public IEPCGearboxInputData(IIEPCEngineeringInputData iepc) + public IEPCGearboxInputData(IIEPCDeclarationInputData iepc) { _iepc = iepc; } -- GitLab