if(typeof ShoppingCartAjaxService == "undefined") ShoppingCartAjaxService={};
ShoppingCartAjaxService_class = function() {};
Object.extend(ShoppingCartAjaxService_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	LoadShoppingCartHTML: function() {
		return this.invoke("LoadShoppingCartHTML", {}, this.LoadShoppingCartHTML.getArguments().slice(0));
	},
	AddProductToShoppingCart: function(productID, quantity) {
		return this.invoke("AddProductToShoppingCart", {"productID":productID, "quantity":quantity}, this.AddProductToShoppingCart.getArguments().slice(2));
	},
	GetShoppingCartDetailInfoHTML: function() {
		return this.invoke("GetShoppingCartDetailInfoHTML", {}, this.GetShoppingCartDetailInfoHTML.getArguments().slice(0));
	},
	RemoveOrderDetail: function(orderDetailID) {
		return this.invoke("RemoveOrderDetail", {"orderDetailID":orderDetailID}, this.RemoveOrderDetail.getArguments().slice(1));
	},
	UpdateOrderDetailQuantity: function(orderDetailID, quantity) {
		return this.invoke("UpdateOrderDetailQuantity", {"orderDetailID":orderDetailID, "quantity":quantity}, this.UpdateOrderDetailQuantity.getArguments().slice(2));
	},
	url: '/ajaxpro/ShoppingCartAjaxService,App_Code.ashx'
}));
ShoppingCartAjaxService = new ShoppingCartAjaxService_class();

