예제 #1
0
파일: App.xaml.cs 프로젝트: julianls/FOSDEM
        internal static async Task Refresh()
        {
            await LoadFromWeb();

            Model = new RuntimeModel(App.Conference);
        }
예제 #2
0
파일: App.xaml.cs 프로젝트: julianls/FOSDEM
        private static async Task LoadConferenceDataOnStart()
        {
            if (Conference == null)
                await LoadFromLocalSorage();

            if (Conference == null)
                await LoadFromWeb();

            Model = new RuntimeModel(App.Conference);
        }