if(typeof Soda == "undefined") Soda={};
if(typeof Soda.Ajax == "undefined") Soda.Ajax={};
if(typeof Soda.Ajax.Shop_class == "undefined") Soda.Ajax.Shop_class={};
Soda.Ajax.Shop_class = function() {};
Object.extend(Soda.Ajax.Shop_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddItemProps: function(shopID, quantity, props) {
		return this.invoke("AddItemProps", {"shopID":shopID, "quantity":quantity, "props":props}, this.AddItemProps.getArguments().slice(3));
	},
	GetCart: function(navID) {
		return this.invoke("GetCart", {"navID":navID}, this.GetCart.getArguments().slice(1));
	},
	UpdateItems: function(ids, vals, navID) {
		return this.invoke("UpdateItems", {"ids":ids, "vals":vals, "navID":navID}, this.UpdateItems.getArguments().slice(3));
	},
	RemoveItemEx: function(productID) {
		return this.invoke("RemoveItemEx", {"productID":productID}, this.RemoveItemEx.getArguments().slice(1));
	},
	url: '/ajaxpro/Soda.Ajax.Shop,Site.ashx'
}));
Soda.Ajax.Shop = new Soda.Ajax.Shop_class();


