Type.registerNamespace('ServiceClasses');
ServiceClasses.MapService=function() {
ServiceClasses.MapService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ServiceClasses.MapService.prototype={
GetZone:function(ZoneID,succeededCallback, failedCallback, userContext) {
return this._invoke(ServiceClasses.MapService.get_path(), 'GetZone',false,{ZoneID:ZoneID},succeededCallback,failedCallback,userContext); },
GetMapLocations:function(rootlocnid,succeededCallback, failedCallback, userContext) {
return this._invoke(ServiceClasses.MapService.get_path(), 'GetMapLocations',false,{rootlocnid:rootlocnid},succeededCallback,failedCallback,userContext); },
SearchLocation:function(prefixText,count,succeededCallback, failedCallback, userContext) {
return this._invoke(ServiceClasses.MapService.get_path(), 'SearchLocation',false,{prefixText:prefixText,count:count},succeededCallback,failedCallback,userContext); },
GetLocationContents:function(knownCategoryValues,category,succeededCallback, failedCallback, userContext) {
return this._invoke(ServiceClasses.MapService.get_path(), 'GetLocationContents',false,{knownCategoryValues:knownCategoryValues,category:category},succeededCallback,failedCallback,userContext); }}
ServiceClasses.MapService.registerClass('ServiceClasses.MapService',Sys.Net.WebServiceProxy);
ServiceClasses.MapService._staticInstance = new ServiceClasses.MapService();
ServiceClasses.MapService.set_path = function(value) { ServiceClasses.MapService._staticInstance._path = value; }
ServiceClasses.MapService.get_path = function() { return ServiceClasses.MapService._staticInstance._path; }
ServiceClasses.MapService.set_timeout = function(value) { ServiceClasses.MapService._staticInstance._timeout = value; }
ServiceClasses.MapService.get_timeout = function() { return ServiceClasses.MapService._staticInstance._timeout; }
ServiceClasses.MapService.set_defaultUserContext = function(value) { ServiceClasses.MapService._staticInstance._userContext = value; }
ServiceClasses.MapService.get_defaultUserContext = function() { return ServiceClasses.MapService._staticInstance._userContext; }
ServiceClasses.MapService.set_defaultSucceededCallback = function(value) { ServiceClasses.MapService._staticInstance._succeeded = value; }
ServiceClasses.MapService.get_defaultSucceededCallback = function() { return ServiceClasses.MapService._staticInstance._succeeded; }
ServiceClasses.MapService.set_defaultFailedCallback = function(value) { ServiceClasses.MapService._staticInstance._failed = value; }
ServiceClasses.MapService.get_defaultFailedCallback = function() { return ServiceClasses.MapService._staticInstance._failed; }
ServiceClasses.MapService.set_path("/Services/LimeMaps.asmx");
ServiceClasses.MapService.GetZone= function(ZoneID,onSuccess,onFailed,userContext) {ServiceClasses.MapService._staticInstance.GetZone(ZoneID,onSuccess,onFailed,userContext); }
ServiceClasses.MapService.GetMapLocations= function(rootlocnid,onSuccess,onFailed,userContext) {ServiceClasses.MapService._staticInstance.GetMapLocations(rootlocnid,onSuccess,onFailed,userContext); }
ServiceClasses.MapService.SearchLocation= function(prefixText,count,onSuccess,onFailed,userContext) {ServiceClasses.MapService._staticInstance.SearchLocation(prefixText,count,onSuccess,onFailed,userContext); }
ServiceClasses.MapService.GetLocationContents= function(knownCategoryValues,category,onSuccess,onFailed,userContext) {ServiceClasses.MapService._staticInstance.GetLocationContents(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');
}
