Example #1
0
 /// <summary>
 /// Gets all questions with answers synchronously and saves them into inner list
 /// </summary>
 public void GetFAQ()
 {
     if (FAQs == null)
     {
         FAQs = (List <FAQ>)FaqService.LoadAllFaqAsync().Result;
     }
 }