Beispiel #1
0
        public static async Task <bool> DownloadTimetableFromInternetAsync()
        {
            if (!(InternetConnectionService.IsInternetConnectionAvailable()))
            {
                return(false);
            }

            bool isTimetableDownloaded = await TimetableDownloadService.DownloadNewTimetableAsync();

            return(isTimetableDownloaded);
        }