var LiveCountsService=function() {
LiveCountsService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LiveCountsService.prototype={
HelloWorld:function(name,succeededCallback, failedCallback, userContext) {
return this._invoke(LiveCountsService.get_path(), 'HelloWorld',false,{name:name},succeededCallback,failedCallback,userContext); },
GetLC_CountiesByStateID:function(lC_StateId,succeededCallback, failedCallback, userContext) {
return this._invoke(LiveCountsService.get_path(), 'GetLC_CountiesByStateID',false,{lC_StateId:lC_StateId},succeededCallback,failedCallback,userContext); },
GetLC_MSAsByStateID:function(lc_StateId,succeededCallback, failedCallback, userContext) {
return this._invoke(LiveCountsService.get_path(), 'GetLC_MSAsByStateID',false,{lc_StateId:lc_StateId},succeededCallback,failedCallback,userContext); },
GetLC_CitiesByStateID:function(lc_StateId,succeededCallback, failedCallback, userContext) {
return this._invoke(LiveCountsService.get_path(), 'GetLC_CitiesByStateID',false,{lc_StateId:lc_StateId},succeededCallback,failedCallback,userContext); }}
LiveCountsService.registerClass('LiveCountsService',Sys.Net.WebServiceProxy);
LiveCountsService._staticInstance = new LiveCountsService();
LiveCountsService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; LiveCountsService._staticInstance._path = value; }
LiveCountsService.get_path = function() { return LiveCountsService._staticInstance._path; }
LiveCountsService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
LiveCountsService._staticInstance._timeout = value; }
LiveCountsService.get_timeout = function() { 
return LiveCountsService._staticInstance._timeout; }
LiveCountsService.set_defaultUserContext = function(value) { 
LiveCountsService._staticInstance._userContext = value; }
LiveCountsService.get_defaultUserContext = function() { 
return LiveCountsService._staticInstance._userContext; }
LiveCountsService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; LiveCountsService._staticInstance._succeeded = value; }
LiveCountsService.get_defaultSucceededCallback = function() { 
return LiveCountsService._staticInstance._succeeded; }
LiveCountsService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; LiveCountsService._staticInstance._failed = value; }
LiveCountsService.get_defaultFailedCallback = function() { 
return LiveCountsService._staticInstance._failed; }
LiveCountsService.set_path("/LiveCountsService.asmx");
LiveCountsService.HelloWorld= function(name,onSuccess,onFailed,userContext) {LiveCountsService._staticInstance.HelloWorld(name,onSuccess,onFailed,userContext); }
LiveCountsService.GetLC_CountiesByStateID= function(lC_StateId,onSuccess,onFailed,userContext) {LiveCountsService._staticInstance.GetLC_CountiesByStateID(lC_StateId,onSuccess,onFailed,userContext); }
LiveCountsService.GetLC_MSAsByStateID= function(lc_StateId,onSuccess,onFailed,userContext) {LiveCountsService._staticInstance.GetLC_MSAsByStateID(lc_StateId,onSuccess,onFailed,userContext); }
LiveCountsService.GetLC_CitiesByStateID= function(lc_StateId,onSuccess,onFailed,userContext) {LiveCountsService._staticInstance.GetLC_CitiesByStateID(lc_StateId,onSuccess,onFailed,userContext); }
