public void LoadText()
        {
            var txt = mTextService.GeText(Id);

            this.Title = txt.Title;
            this.Text  = txt.Body;
            var sens = mSentenceService.GetSentencesOfText(Id);

            foreach (var sen in sens)
            {
                this.Sentences.Add(new SentenceData()
                {
                    Chinese = sen.Chinese, Sentence = sen.English
                });
            }
        }