// API GET: GetFeaturedCategoriesFull.
        /// <summary>
        /// Returns the featured categories and their corresponding featured products, ordered by precedence.
        /// </summary>
        /// <returns></returns>
        public ActionResult GetFeaturedCategoriesFull()
        {
            FeaturedCategoriesList featuredList = ProductsBL.GetFeaturedCategories(true);

            return(Content(JsonConvert.SerializeObject(featuredList)));
        }