Beispiel #1
0
        // GET: Home
        public ActionResult Index1()
        {
            ProductService productService = new ProductService();

            ViewBag.Latest = productService.LatestProducts();
            CookieManager manager = new CookieManager();

            ViewBag.cookie = manager.GetCookieProducts();
            CartManager Cartmanager = new CartManager();

            return(View());
        }