示例#1
0
        /// <summary>
        /// All active banners in the system
        /// </summary>
        /// <returns></returns>
        public ActionResult Active(int pageIndex, int pageSize)
        {
            var query    = new BannersQueryRequest(pageIndex, pageSize);
            var response = _bannerQueryService.GetActiveBanners(query);

            return(View("Active", response));
        }