addNamespace("gift.shoping");
gift.shoping.cartList_class = Class.create();
gift.shoping.cartList_class.prototype = (new AjaxPro.Request()).extend({
	update: function(keyvalue, callback) {
		return this.invoke("update", {"keyvalue":keyvalue}, callback);
	},
	del: function(key, callback) {
		return this.invoke("del", {"key":key}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/gift.shoping.cartList,gift.ashx";
	}
})
gift.shoping.cartList = new gift.shoping.cartList_class();

