コード例 #1
0
        private async void DeleteExercise()
        {
            var  service = new ExerciseService();
            bool result  = await service.DeleteGrammarExerciseAsync(Exercise);

            if (result)
            {
                NavigationService.GoBack();
            }
        }