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

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

Cleaned up CreateVifViewModel

parent a9571420
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,29 @@ namespace VECTO3GUI2020.ViewModel.MultiStage.Implementation
}));
}
public ICommand SelectPrimaryInputFileCommand
{
get => _selectPrimaryInputFileCommand ?? (_selectPrimaryInputFileCommand = new RelayCommand(() => {
var selectedFilePath = _dialogHelper.OpenXMLFileDialog();
LoadPrimaryInput(selectedFilePath);
}));
}
private ICommand _saveJobCommand;
public ICommand SaveJobCommand
{
get => _saveJobCommand ?? (_saveJobCommand = new RelayCommand(() => { return; }));
}
private ICommand _saveJobAsCommand;
public ICommand SaveJobAsCommand
{
get => _saveJobAsCommand ?? (_saveJobAsCommand = new RelayCommand(() => { return; }));
}
public bool LoadStageInput(string fileName)
{
if (fileName == null)
......@@ -138,14 +161,6 @@ namespace VECTO3GUI2020.ViewModel.MultiStage.Implementation
return valid;
}
public ICommand SelectPrimaryInputFileCommand
{
get => _selectPrimaryInputFileCommand ?? (_selectPrimaryInputFileCommand = new RelayCommand(() => {
var selectedFilePath = _dialogHelper.OpenXMLFileDialog();
LoadPrimaryInput(selectedFilePath);
}));
}
public bool LoadPrimaryInput(string fileName)
{
......
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