public FAQ GetAnFAQ(int FAQId)
 {
     try
     {
         var FAQ = _iFAQRepository.GetAnFAQ(FAQId);
         return(FAQ);
     }
     catch (Exception ex)
     {
         return(null);
     }
 }