var InventoryDisplay=function() {
InventoryDisplay.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
InventoryDisplay.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return InventoryDisplay._staticInstance.get_path();},
BrowseEvents:function(request,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'BrowseEvents',false,{request:request},succeededCallback,failedCallback,userContext); },
DetailEvents:function(request,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DetailEvents',false,{request:request},succeededCallback,failedCallback,userContext); },
SendMail:function(names,values,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SendMail',false,{names:names,values:values},succeededCallback,failedCallback,userContext); },
GetCompletionList:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'GetCompletionList',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); }}
InventoryDisplay.registerClass('InventoryDisplay',Sys.Net.WebServiceProxy);
InventoryDisplay._staticInstance = new InventoryDisplay();
InventoryDisplay.set_path = function(value) { InventoryDisplay._staticInstance.set_path(value); }
InventoryDisplay.get_path = function() { return InventoryDisplay._staticInstance.get_path(); }
InventoryDisplay.set_timeout = function(value) { InventoryDisplay._staticInstance.set_timeout(value); }
InventoryDisplay.get_timeout = function() { return InventoryDisplay._staticInstance.get_timeout(); }
InventoryDisplay.set_defaultUserContext = function(value) { InventoryDisplay._staticInstance.set_defaultUserContext(value); }
InventoryDisplay.get_defaultUserContext = function() { return InventoryDisplay._staticInstance.get_defaultUserContext(); }
InventoryDisplay.set_defaultSucceededCallback = function(value) { InventoryDisplay._staticInstance.set_defaultSucceededCallback(value); }
InventoryDisplay.get_defaultSucceededCallback = function() { return InventoryDisplay._staticInstance.get_defaultSucceededCallback(); }
InventoryDisplay.set_defaultFailedCallback = function(value) { InventoryDisplay._staticInstance.set_defaultFailedCallback(value); }
InventoryDisplay.get_defaultFailedCallback = function() { return InventoryDisplay._staticInstance.get_defaultFailedCallback(); }
InventoryDisplay.set_path("/InventoryDisplay.asmx");
InventoryDisplay.BrowseEvents= function(request,onSuccess,onFailed,userContext) {InventoryDisplay._staticInstance.BrowseEvents(request,onSuccess,onFailed,userContext); }
InventoryDisplay.DetailEvents= function(request,onSuccess,onFailed,userContext) {InventoryDisplay._staticInstance.DetailEvents(request,onSuccess,onFailed,userContext); }
InventoryDisplay.SendMail= function(names,values,onSuccess,onFailed,userContext) {InventoryDisplay._staticInstance.SendMail(names,values,onSuccess,onFailed,userContext); }
InventoryDisplay.GetCompletionList= function(prefixText,count,onSuccess,onFailed,userContext) {InventoryDisplay._staticInstance.GetCompletionList(prefixText,count,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Motorwebs.NET35.InventoryDisplay');
if (typeof(Motorwebs.NET35.InventoryDisplay.BrowsePostRequest) === 'undefined') {
Motorwebs.NET35.InventoryDisplay.BrowsePostRequest=gtc("Motorwebs.NET35.InventoryDisplay.BrowsePostRequest");
Motorwebs.NET35.InventoryDisplay.BrowsePostRequest.registerClass('Motorwebs.NET35.InventoryDisplay.BrowsePostRequest');
}
if (typeof(Motorwebs.NET35.InventoryDisplay.DetailPostRequest) === 'undefined') {
Motorwebs.NET35.InventoryDisplay.DetailPostRequest=gtc("Motorwebs.NET35.InventoryDisplay.DetailPostRequest");
Motorwebs.NET35.InventoryDisplay.DetailPostRequest.registerClass('Motorwebs.NET35.InventoryDisplay.DetailPostRequest');
}
if (typeof(Motorwebs.NET35.InventoryDisplay.DetailPostResponse) === 'undefined') {
Motorwebs.NET35.InventoryDisplay.DetailPostResponse=gtc("Motorwebs.NET35.InventoryDisplay.DetailPostResponse");
Motorwebs.NET35.InventoryDisplay.DetailPostResponse.registerClass('Motorwebs.NET35.InventoryDisplay.DetailPostResponse');
}
