if(typeof Collection == "undefined") Collection={};
Collection_class = function() {};
Object.extend(Collection_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	IsExist: function(memberId, productId) {
		return this.invoke("IsExist", {"memberId":memberId, "productId":productId}, this.IsExist.getArguments().slice(2));
	},
	Add: function(memberId, productId) {
		return this.invoke("Add", {"memberId":memberId, "productId":productId}, this.Add.getArguments().slice(2));
	},
	GetCurrentUserId: function() {
		return this.invoke("GetCurrentUserId", {}, this.GetCurrentUserId.getArguments().slice(0));
	},
	url: '/ajaxpro/Collection,App_Code.ashx'
}));
Collection = new Collection_class();

