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

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

moved IMultistageVehicleViewModel

parent 44855784
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,6 @@ using TUGraz.VectoCore.InputData.FileIO.XML.Declaration.DataProvider.v24;
using VECTO3GUI2020.Helper;
using VECTO3GUI2020.Properties;
using VECTO3GUI2020.ViewModel.Implementation.Common;
using VECTO3GUI2020.ViewModel.Interfaces.JobEdit.Vehicle;
using VECTO3GUI2020.ViewModel.Interfaces.JobEdit.Vehicle.Components;
using VECTO3GUI2020.ViewModel.MultiStage.Interfaces;
using EnumHelper = VECTO3GUI2020.Helper.EnumHelper;
......@@ -58,16 +57,6 @@ namespace VECTO3GUI2020.ViewModel.MultiStage.Implementation
}
}
public interface IMultistageVehicleViewModel : IVehicleViewModel, INotifyPropertyChanged
{
bool HasErrors { get; }
Dictionary<string, string> Errors { get; }
IMultistageAirdragViewModel MultistageAirdragViewModel { get; set; }
IMultistageAuxiliariesViewModel MultistageAuxiliariesViewModel { get; set; }
bool PrimaryVehicleHybridElectric { get; set; }
void SetVehicleInputData(IVehicleDeclarationInputData vehicleInputData);
}
public class InterimStageBusVehicleViewModel_v2_8 : ViewModelBase, IMultistageVehicleViewModel,
IVehicleComponentsDeclaration, IAdvancedDriverAssistantSystemDeclarationInputData, IDataErrorInfo
......
using System.Collections.Generic;
using System.ComponentModel;
using TUGraz.VectoCommon.InputData;
using VECTO3GUI2020.ViewModel.Interfaces.JobEdit.Vehicle;
using VECTO3GUI2020.ViewModel.MultiStage.Implementation;
namespace VECTO3GUI2020.ViewModel.MultiStage.Interfaces
{
public interface IMultistageVehicleViewModel : IVehicleViewModel, INotifyPropertyChanged
{
bool HasErrors { get; }
Dictionary<string, string> Errors { get; }
IMultistageAirdragViewModel MultistageAirdragViewModel { get; set; }
IMultistageAuxiliariesViewModel MultistageAuxiliariesViewModel { get; set; }
bool PrimaryVehicleHybridElectric { get; set; }
bool ShowConsolidatedData { get; set; }
void SetVehicleInputData(IVehicleDeclarationInputData vehicleInputData);
}
}
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