Ejemplo n.º 1
0
        public void getAllfaqByfaqCatID()
        {
            IEnumerable <HCRGUniversity.Core.Data.Model.FAQDetail> faqFullDetail = _faqBL.GetFAQByCatID(2);

            Assert.IsTrue(_faqBL != null, "Unable to get");
        }
 public IEnumerable <FAQ> GetFAQByCatID(int faqCatID)
 {
     return(Mapper.Map <IEnumerable <FAQ> >(_faq.GetFAQByCatID(faqCatID)));
 }