var Product=function() {
Product.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Product.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Product._staticInstance.get_path();},
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
Product.registerClass('Product',Sys.Net.WebServiceProxy);
Product._staticInstance = new Product();
Product.set_path = function(value) { Product._staticInstance.set_path(value); }
Product.get_path = function() { return Product._staticInstance.get_path(); }
Product.set_timeout = function(value) { Product._staticInstance.set_timeout(value); }
Product.get_timeout = function() { return Product._staticInstance.get_timeout(); }
Product.set_defaultUserContext = function(value) { Product._staticInstance.set_defaultUserContext(value); }
Product.get_defaultUserContext = function() { return Product._staticInstance.get_defaultUserContext(); }
Product.set_defaultSucceededCallback = function(value) { Product._staticInstance.set_defaultSucceededCallback(value); }
Product.get_defaultSucceededCallback = function() { return Product._staticInstance.get_defaultSucceededCallback(); }
Product.set_defaultFailedCallback = function(value) { Product._staticInstance.set_defaultFailedCallback(value); }
Product.get_defaultFailedCallback = function() { return Product._staticInstance.get_defaultFailedCallback(); }
Product.set_path("/Product.asmx");
Product.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {Product._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
