cart_ajax_class = function() {};
Object.extend(cart_ajax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	addtocart: function(productid, producttableid) {
		return this.invoke("addtocart", {"productid":productid, "producttableid":producttableid}, this.addtocart.getArguments().slice(2));
	},
	getcarttotal: function(customerid) {
		return this.invoke("getcarttotal", {"customerid":customerid}, this.getcarttotal.getArguments().slice(1));
	},
	getcart: function() {
		return this.invoke("getcart", {}, this.getcart.getArguments().slice(0));
	},
	url: '/ajaxpro/cart_ajax,App_Code.bxsj_nrl.ashx'
}));
cart_ajax = new cart_ajax_class();

