addNamespace("CartServerInterface");
CartServerInterface_class = function() {};
Object.extend(CartServerInterface_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddCart: function(ID, Count, Type, HowLong) {
		return this.invoke("AddCart", {"ID":ID, "Count":Count, "Type":Type, "HowLong":HowLong}, this.AddCart.getArguments().slice(4));
	},
	DelCart: function(ID) {
		return this.invoke("DelCart", {"ID":ID}, this.DelCart.getArguments().slice(1));
	},
	ModifyCart: function(ID, Count) {
		return this.invoke("ModifyCart", {"ID":ID, "Count":Count}, this.ModifyCart.getArguments().slice(2));
	},
	GetCartInfo: function() {
		return this.invoke("GetCartInfo", {}, this.GetCartInfo.getArguments().slice(0));
	},
	GetCartSum: function() {
		return this.invoke("GetCartSum", {}, this.GetCartSum.getArguments().slice(0));
	},
	ClearCart: function() {
		return this.invoke("ClearCart", {}, this.ClearCart.getArguments().slice(0));
	},
	PayMoney: function() {
		return this.invoke("PayMoney", {}, this.PayMoney.getArguments().slice(0));
	},
	GetCartFeedback: function() {
		return this.invoke("GetCartFeedback", {}, this.GetCartFeedback.getArguments().slice(0));
	},
	url: '/ajaxpro/CartServerInterface,App_Code.7itgfrj9.ashx'
}));
CartServerInterface = new CartServerInterface_class();

