var GetVehicles=function() {
GetVehicles.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
GetVehicles.prototype={
GetVehicleSuggestions:function(keyword,usePaging,pageIndex,pageSize,succeededCallback, failedCallback, userContext) {
return this._invoke(GetVehicles.get_path(), 'GetVehicleSuggestions',false,{keyword:keyword,usePaging:usePaging,pageIndex:pageIndex,pageSize:pageSize},succeededCallback,failedCallback,userContext); }}
GetVehicles.registerClass('GetVehicles',Sys.Net.WebServiceProxy);
GetVehicles._staticInstance = new GetVehicles();
GetVehicles.set_path = function(value) { GetVehicles._staticInstance._path = value; }
GetVehicles.get_path = function() { return GetVehicles._staticInstance._path; }
GetVehicles.set_timeout = function(value) { GetVehicles._staticInstance._timeout = value; }
GetVehicles.get_timeout = function() { return GetVehicles._staticInstance._timeout; }
GetVehicles.set_defaultUserContext = function(value) { GetVehicles._staticInstance._userContext = value; }
GetVehicles.get_defaultUserContext = function() { return GetVehicles._staticInstance._userContext; }
GetVehicles.set_defaultSucceededCallback = function(value) { GetVehicles._staticInstance._succeeded = value; }
GetVehicles.get_defaultSucceededCallback = function() { return GetVehicles._staticInstance._succeeded; }
GetVehicles.set_defaultFailedCallback = function(value) { GetVehicles._staticInstance._failed = value; }
GetVehicles.get_defaultFailedCallback = function() { return GetVehicles._staticInstance._failed; }
GetVehicles.set_path("/GetVehicles.asmx");
GetVehicles.GetVehicleSuggestions= function(keyword,usePaging,pageIndex,pageSize,onSuccess,onFailed,userContext) {GetVehicles._staticInstance.GetVehicleSuggestions(keyword,usePaging,pageIndex,pageSize,onSuccess,onFailed,userContext); }
