예제 #1
0
        public void GetCartProducts(ProductsViewModel productsViewModel)
        {
            int total;

            ProductList  = homeModel.GetCartProducts(productsViewModel, out total);
            totalRecords = total;
            // Loop through product list, and add each product price to cart total
        }