if(typeof Shop == "undefined") Shop={};
Shop.ViewCart_class = function() {};
Object.extend(Shop.ViewCart_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	RemoveItemFromCart: function(cartID) {
		return this.invoke("RemoveItemFromCart", {"cartID":cartID}, this.RemoveItemFromCart.getArguments().slice(1));
	},
	UpdateQuantity: function(cartID, updateQuantity) {
		return this.invoke("UpdateQuantity", {"cartID":cartID, "updateQuantity":updateQuantity}, this.UpdateQuantity.getArguments().slice(2));
	},
	UpdateOrderSummary: function() {
		return this.invoke("UpdateOrderSummary", {}, this.UpdateOrderSummary.getArguments().slice(0));
	},
	url: '/Shop/ajaxpro/Shop.ViewCart,Shop.ashx'
}));
Shop.ViewCart = new Shop.ViewCart_class();

