if(typeof Jan == "undefined") Jan={};
if(typeof Jan.Components == "undefined") Jan.Components={};
if(typeof Jan.Components.Ecommerce == "undefined") Jan.Components.Ecommerce={};
Jan.Components.Ecommerce.ShoppingCart_class = function() {};
Object.extend(Jan.Components.Ecommerce.ShoppingCart_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetItemCount: function() {
		return this.invoke("GetItemCount", {}, this.GetItemCount.getArguments().slice(0));
	},
	AddProductItemToCart: function(productId) {
		return this.invoke("AddProductItemToCart", {"productId":productId}, this.AddProductItemToCart.getArguments().slice(1));
	},
	url: '/ajaxpro/Jan.Components.Ecommerce.ShoppingCart,Jan.ashx'
}));
Jan.Components.Ecommerce.ShoppingCart = new Jan.Components.Ecommerce.ShoppingCart_class();

