var Price=function() {
Price.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Price.prototype={
GetPrice:function(Key,succeededCallback, failedCallback, userContext) {
return this._invoke(Price.get_path(), 'GetPrice',false,{Key:Key},succeededCallback,failedCallback,userContext); }}
Price.registerClass('Price',Sys.Net.WebServiceProxy);
Price._staticInstance = new Price();
Price.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Price._staticInstance._path = value; }
Price.get_path = function() { return Price._staticInstance._path; }
Price.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
Price._staticInstance._timeout = value; }
Price.get_timeout = function() { 
return Price._staticInstance._timeout; }
Price.set_defaultUserContext = function(value) { 
Price._staticInstance._userContext = value; }
Price.get_defaultUserContext = function() { 
return Price._staticInstance._userContext; }
Price.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Price._staticInstance._succeeded = value; }
Price.get_defaultSucceededCallback = function() { 
return Price._staticInstance._succeeded; }
Price.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Price._staticInstance._failed = value; }
Price.get_defaultFailedCallback = function() { 
return Price._staticInstance._failed; }
Price.set_path("/Services/Price.asmx");
Price.GetPrice= function(Key,onSuccess,onFailed,userContext) {Price._staticInstance.GetPrice(Key,onSuccess,onFailed,userContext); }
