addNamespace("FeiYang.SaleWeb.Lotro");
FeiYang.SaleWeb.Lotro.BuyLotroGold_class = Class.create();
FeiYang.SaleWeb.Lotro.BuyLotroGold_class.prototype = (new AjaxPro.Request()).extend({
	GetPrice: function(gamelocation, serverName, quantity, callback) {
		return this.invoke("GetPrice", {"gamelocation":gamelocation, "serverName":serverName, "quantity":quantity}, callback);
	},
	GetWeight: function(gamelocation, quantity, callback) {
		return this.invoke("GetWeight", {"gamelocation":gamelocation, "quantity":quantity}, callback);
	},
	GetDiscount: function(callback) {
		return this.invoke("GetDiscount", {}, 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.Lotro.BuyLotroGold,FeiYang.SaleWeb.ashx";
	}
})
FeiYang.SaleWeb.Lotro.BuyLotroGold = new FeiYang.SaleWeb.Lotro.BuyLotroGold_class();


