示例#1
0
        public IndexViewModel LayOutHomePage()
        {
            var model = new IndexViewModel
            {
                Featured        = _catalogService.GetFeaturedProducts(NumberOfFeaturedProducts),
                SubscriberCount = _subscriberRepository.Count()
            };

            return(model);
        }