Example #1
0
        public ActionResult Index(ShoppingCart cart, BrowseHistory bh)
        {
            ViewBag.delivery = bh.IsDelivery;
            BizInfoModel bim = new BizInfoModel();

            bim.AllZips      = BizInfoRepository.GetAllZipCities(true);
            ViewBag.bagitems = GetCartItems(cart);
            return(View(bim));
        }