public ActionResult Index() { var orderItem = cartManager.DownloadCart(); var fullPrice = cartManager.DownloadCartValue(); var cartViewModel = new CartViewModel() { OrderPosition = orderItem, TotalPrice = fullPrice }; return(View(cartViewModel)); }