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

Skip to content
Snippets Groups Projects
Commit 7b93c672 authored by Harald Martini's avatar Harald Martini
Browse files

use IDictionary and IList for ElectricMotorTorqueLimits

parent 287c7f98
No related tags found
No related merge requests found
......@@ -354,7 +354,7 @@ namespace VECTO3GUI2020.ViewModel.Implementation.JobEdit.Vehicle
ConsumerTechnology? IVehicleDeclarationInputData.DoorDriveTechnology { get; }
public VehicleDeclarationType VehicleDeclarationType => throw new NotImplementedException();
public Dictionary<PowertrainPosition, List<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; }
public IDictionary<PowertrainPosition, IList<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; }
public TableData BoostingLimitations { get; }
public string VehicleTypeApprovalNumber => throw new NotImplementedException();
......
......@@ -798,7 +798,7 @@ namespace VECTO3GUI2020.ViewModel.MultiStage.Implementation
set => SetProperty(ref _vehicleDeclarationType, value);
}
public Dictionary<PowertrainPosition, List<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; }
public IDictionary<PowertrainPosition, IList<Tuple<Volt, TableData>>> ElectricMotorTorqueLimits { get; }
public TableData BoostingLimitations { get; }
private string _vehicleTypeApprovalNumber;
......
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