public async Task DeleteLesson(string idLesson)
        {
            questionDb = new QuestionDatabaseAccess();
            List <Question> myLstQuestion = new List <Question>();

            myLstQuestion = questionDb.GetQuestionDb(idLesson);
            foreach (var myQuestion in myLstQuestion)
            {
                // Thực hiện xóa câu trả lời
                answerDb = new AnswerDatabaseAccess();
                answerDb.DeleteAnswer(myQuestion.QuestionID);
            }
            // Thực hiện xóa câu hỏi
            questionDb.DeleteQuestion(idLesson);
            // Thực hiện xóa Lesson
            lessonDb = new LessonDatabaseAccess();
            lessonDb.DeleteLesson(idLesson);

            DependencyService.Get <IMessage>().ShortToast("Delete completed");
        }