Microscopic Traffic Simulator
IInteractions.cs
Go to the documentation of this file.
1 namespace Microscopic_Traffic_Simulator.ViewModels
2 {
6  interface IInteractions
7  {
12  bool? SaveChangesYesNoCancel();
13 
18  string GetPathToOpenTopologyFile();
19 
24  string GetPathToSaveTopologyFile();
25 
30  string GetPathToOpenParametersFile();
31 
36  string GetPathToSaveParametersFile();
37 
42  void ScreamErrorMessage(string errorMessage);
43  }
44 }
Interface for interactions with user.
Definition: IInteractions.cs:6