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