var CategoriesService=function() {
CategoriesService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CategoriesService.prototype={
GetDropDownContents:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(CategoriesService.get_path(), 'GetDropDownContents',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); }}
CategoriesService.registerClass('CategoriesService',Sys.Net.WebServiceProxy);
CategoriesService._staticInstance = new CategoriesService();
CategoriesService.set_path = function(value) { CategoriesService._staticInstance._path = value; }
CategoriesService.get_path = function() { return CategoriesService._staticInstance._path; }
CategoriesService.set_timeout = function(value) { CategoriesService._staticInstance._timeout = value; }
CategoriesService.get_timeout = function() { return CategoriesService._staticInstance._timeout; }
CategoriesService.set_defaultUserContext = function(value) { CategoriesService._staticInstance._userContext = value; }
CategoriesService.get_defaultUserContext = function() { return CategoriesService._staticInstance._userContext; }
CategoriesService.set_defaultSucceededCallback = function(value) { CategoriesService._staticInstance._succeeded = value; }
CategoriesService.get_defaultSucceededCallback = function() { return CategoriesService._staticInstance._succeeded; }
CategoriesService.set_defaultFailedCallback = function(value) { CategoriesService._staticInstance._failed = value; }
CategoriesService.get_defaultFailedCallback = function() { return CategoriesService._staticInstance._failed; }
CategoriesService.set_path("/CategoriesService.asmx");
CategoriesService.GetDropDownContents= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {CategoriesService._staticInstance.GetDropDownContents(knownCategoryValues,category,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');
}
