addNamespace("Shop.SaleWeb.Shops");
Shop.SaleWeb.Shops.ProductDetail_class = Class.create();
Shop.SaleWeb.Shops.ProductDetail_class.prototype = (new AjaxPro.Request()).extend({
	GetProPrice: function(quantity, callback) {
		return this.invoke("GetProPrice", {"quantity":quantity}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/Shop.SaleWeb.Shops.ProductDetail,NewShop.SaleWeb.ashx";
	}
})
Shop.SaleWeb.Shops.ProductDetail = new Shop.SaleWeb.Shops.ProductDetail_class();

