CarrotCake.CMS.Plugins.FAQ2.Models.FaqPublic.GetListTop C# (CSharp) Method

GetListTop() public method

public GetListTop ( int takeTop ) : List
takeTop int
return List
        public List<carrot_FaqItem> GetListTop(int takeTop)
        {
            using (FaqHelper fh = new FaqHelper(this.SiteID)) {
                return fh.FaqItemListPublicTopGetByFaqCategoryID(this.FaqCategoryID, this.SiteID, takeTop);
            }
        }