public string SaveUpdateCart(int id, int count)
        {
            // Remove the item from the cart
            var results = _shoppingCartBusinessModel.SaveUpdateCart(id, count, this.HttpContext);

            return(results);
        }