addNamespace("FeiYang.SaleWeb.EQ2");
FeiYang.SaleWeb.EQ2.EQ2GoldStore_class = Class.create();
FeiYang.SaleWeb.EQ2.EQ2GoldStore_class.prototype = (new AjaxPro.Request()).extend({
	GetPrice: function(serverName, faction, goldquantity, callback) {
		return this.invoke("GetPrice", {"serverName":serverName, "faction":faction, "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.EQ2.EQ2GoldStore,FeiYang.SaleWeb.ashx";
	}
})
FeiYang.SaleWeb.EQ2.EQ2GoldStore = new FeiYang.SaleWeb.EQ2.EQ2GoldStore_class();

