public IEnumerable <Faq> GetFaqs()
        {
            var faqs = faqRepository.GetMany(x => !x.isDelete);

            return(faqs);
        }