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