var AJAXInfoService=function() {
AJAXInfoService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
AJAXInfoService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return AJAXInfoService._staticInstance.get_path();},
Search_AutoComplete:function(prefixText,count,contextKey,succeededCallback, failedCallback, userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="String">System.String</param>
/// <param name="contextKey" 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(), 'Search_AutoComplete',false,{prefixText:prefixText,count:count,contextKey:contextKey},succeededCallback,failedCallback,userContext); },
GetChainedControlsDP:function(_json,succeededCallback, failedCallback, userContext) {
/// <param name="_json" type="BaseLibrary.JSON_DP2">BaseLibrary.JSON_DP2</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(), 'GetChainedControlsDP',false,{_json:_json},succeededCallback,failedCallback,userContext); },
CartAction:function(contextKey,succeededCallback, failedCallback, userContext) {
/// <param name="contextKey" 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(), 'CartAction',false,{contextKey:contextKey},succeededCallback,failedCallback,userContext); }}
AJAXInfoService.registerClass('AJAXInfoService',Sys.Net.WebServiceProxy);
AJAXInfoService._staticInstance = new AJAXInfoService();
AJAXInfoService.set_path = function(value) {
AJAXInfoService._staticInstance.set_path(value); }
AJAXInfoService.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return AJAXInfoService._staticInstance.get_path();}
AJAXInfoService.set_timeout = function(value) {
AJAXInfoService._staticInstance.set_timeout(value); }
AJAXInfoService.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return AJAXInfoService._staticInstance.get_timeout(); }
AJAXInfoService.set_defaultUserContext = function(value) { 
AJAXInfoService._staticInstance.set_defaultUserContext(value); }
AJAXInfoService.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return AJAXInfoService._staticInstance.get_defaultUserContext(); }
AJAXInfoService.set_defaultSucceededCallback = function(value) { 
 AJAXInfoService._staticInstance.set_defaultSucceededCallback(value); }
AJAXInfoService.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return AJAXInfoService._staticInstance.get_defaultSucceededCallback(); }
AJAXInfoService.set_defaultFailedCallback = function(value) { 
AJAXInfoService._staticInstance.set_defaultFailedCallback(value); }
AJAXInfoService.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return AJAXInfoService._staticInstance.get_defaultFailedCallback(); }
AJAXInfoService.set_path("/AJAXInfoService.asmx");
AJAXInfoService.Search_AutoComplete= function(prefixText,count,contextKey,onSuccess,onFailed,userContext) {
/// <param name="prefixText" type="String">System.String</param>
/// <param name="count" type="String">System.String</param>
/// <param name="contextKey" 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>
AJAXInfoService._staticInstance.Search_AutoComplete(prefixText,count,contextKey,onSuccess,onFailed,userContext); }
AJAXInfoService.GetChainedControlsDP= function(_json,onSuccess,onFailed,userContext) {
/// <param name="_json" type="BaseLibrary.JSON_DP2">BaseLibrary.JSON_DP2</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>
AJAXInfoService._staticInstance.GetChainedControlsDP(_json,onSuccess,onFailed,userContext); }
AJAXInfoService.CartAction= function(contextKey,onSuccess,onFailed,userContext) {
/// <param name="contextKey" 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>
AJAXInfoService._staticInstance.CartAction(contextKey,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('BaseLibrary');
if (typeof(BaseLibrary.JSON_DP2) === 'undefined') {
BaseLibrary.JSON_DP2=gtc("BaseLibrary.JSON_DP2");
BaseLibrary.JSON_DP2.registerClass('BaseLibrary.JSON_DP2');
}

