コード例 #1
0
        // GET: ShoppingCart
        public ActionResult Index()
        {
            var shoppingCarts = shoppingCartManager.SelectShoppingCarts();

            ShoppingCartListModel model = ShoppingCartListModel.FromBusinessEntity(shoppingCarts);

            return(View(model));
        }