private async void UpdatePageData()
        {
            var platformService = new Services.PlatformService();
            var result          = await platformService.GetPlatformInfo(PlatformId);

            Platform = result;
        }
Beispiel #2
0
        private async void LoadData()
        {
            var platformService = new Services.PlatformService();
            var result          = await platformService.GetAllPlatforms();

            foreach (var plat in result.Results)
            {
                Platforms.Add(plat);
            }
        }