public void DeleteSelectedStation(Station station)
 {
     try
     {
         Logger.LogNewMessage($"Delete called for station with name {station.Name}..", LogType.INFO);
         StationServiceProxy.DeleteStation(station.Id);
         RefreshStationsList();
         RefreshRoadsList();
     }
     catch (Exception e)
     {
         Logger.LogNewMessage($"Error occured deleting station. Error message {e.Message}", LogType.ERROR);
     }
 }