public void RefreshStationsList()
 {
     Logger.LogNewMessage("Getting all stations from server..", LogType.INFO);
     try
     {
         Stations = new BindingList <Station>(StationServiceProxy.GetAllStations());
         if (Stations == null)
         {
             Stations = new BindingList <Station>();
         }
     }
     catch (Exception e)
     {
         Logger.LogNewMessage($"Error occured getting all stations. Error message {e.Message}", LogType.ERROR);
     }
 }