var ServiceSuche=function() {
ServiceSuche.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ServiceSuche.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ServiceSuche._staticInstance.get_path();},
ArtikelSuche:function(SuchString,succeededCallback, failedCallback, userContext) {
/// <param name="SuchString" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'ArtikelSuche',false,{SuchString:SuchString},succeededCallback,failedCallback,userContext); },
LagerFilter:function(LagerFilter,succeededCallback, failedCallback, userContext) {
/// <param name="LagerFilter" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LagerFilter',false,{LagerFilter:LagerFilter},succeededCallback,failedCallback,userContext); }}
ServiceSuche.registerClass('ServiceSuche',Sys.Net.WebServiceProxy);
ServiceSuche._staticInstance = new ServiceSuche();
ServiceSuche.set_path = function(value) {
ServiceSuche._staticInstance.set_path(value); }
ServiceSuche.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ServiceSuche._staticInstance.get_path();}
ServiceSuche.set_timeout = function(value) {
ServiceSuche._staticInstance.set_timeout(value); }
ServiceSuche.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ServiceSuche._staticInstance.get_timeout(); }
ServiceSuche.set_defaultUserContext = function(value) { 
ServiceSuche._staticInstance.set_defaultUserContext(value); }
ServiceSuche.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ServiceSuche._staticInstance.get_defaultUserContext(); }
ServiceSuche.set_defaultSucceededCallback = function(value) { 
 ServiceSuche._staticInstance.set_defaultSucceededCallback(value); }
ServiceSuche.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ServiceSuche._staticInstance.get_defaultSucceededCallback(); }
ServiceSuche.set_defaultFailedCallback = function(value) { 
ServiceSuche._staticInstance.set_defaultFailedCallback(value); }
ServiceSuche.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ServiceSuche._staticInstance.get_defaultFailedCallback(); }
ServiceSuche.set_path("/ServiceSuche.asmx");
ServiceSuche.ArtikelSuche= function(SuchString,onSuccess,onFailed,userContext) {
/// <param name="SuchString" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ServiceSuche._staticInstance.ArtikelSuche(SuchString,onSuccess,onFailed,userContext); }
ServiceSuche.LagerFilter= function(LagerFilter,onSuccess,onFailed,userContext) {
/// <param name="LagerFilter" type="Boolean">System.Boolean</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ServiceSuche._staticInstance.LagerFilter(LagerFilter,onSuccess,onFailed,userContext); }

