addNamespace("FeiYang.SaleWeb.LN2.Gold");
FeiYang.SaleWeb.LN2.Gold.GoldStore_class = Class.create();
FeiYang.SaleWeb.LN2.Gold.GoldStore_class.prototype = (new AjaxPro.Request()).extend({
	GetPrice: function(serverName, goldquantity, callback) {
		return this.invoke("GetPrice", {"serverName":serverName, "goldquantity":goldquantity}, callback);
	},
	ChangeCurrency: function(oldCurrency, currency, standPrice, promotionPrice, callback) {
		return this.invoke("ChangeCurrency", {"oldCurrency":oldCurrency, "currency":currency, "standPrice":standPrice, "promotionPrice":promotionPrice}, callback);
	},
	GetDiscount: function(callback) {
		return this.invoke("GetDiscount", {}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/FeiYang.SaleWeb.LN2.Gold.GoldStore,FeiYang.SaleWeb.ashx";
	}
})
FeiYang.SaleWeb.LN2.Gold.GoldStore = new FeiYang.SaleWeb.LN2.Gold.GoldStore_class();


