// GET: ShoppingCart public ActionResult Index() { var shoppingCarts = shoppingCartManager.SelectShoppingCarts(); ShoppingCartListModel model = ShoppingCartListModel.FromBusinessEntity(shoppingCarts); return(View(model)); }