var CommonUtilManageScript=function() {
CommonUtilManageScript.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
CommonUtilManageScript.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return CommonUtilManageScript._staticInstance.get_path();},
GetUTCList:function(UTCDistance,succeededCallback, failedCallback, userContext) {
/// <param name="UTCDistance" type="Number">System.Int32</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(), 'GetUTCList',false,{UTCDistance:UTCDistance},succeededCallback,failedCallback,userContext); },
GetUTCListByCity:function(CityNo,succeededCallback, failedCallback, userContext) {
/// <param name="CityNo" type="Number">System.Int32</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(), 'GetUTCListByCity',false,{CityNo:CityNo},succeededCallback,failedCallback,userContext); }}
CommonUtilManageScript.registerClass('CommonUtilManageScript',Sys.Net.WebServiceProxy);
CommonUtilManageScript._staticInstance = new CommonUtilManageScript();
CommonUtilManageScript.set_path = function(value) {
CommonUtilManageScript._staticInstance.set_path(value); }
CommonUtilManageScript.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return CommonUtilManageScript._staticInstance.get_path();}
CommonUtilManageScript.set_timeout = function(value) {
CommonUtilManageScript._staticInstance.set_timeout(value); }
CommonUtilManageScript.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return CommonUtilManageScript._staticInstance.get_timeout(); }
CommonUtilManageScript.set_defaultUserContext = function(value) { 
CommonUtilManageScript._staticInstance.set_defaultUserContext(value); }
CommonUtilManageScript.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return CommonUtilManageScript._staticInstance.get_defaultUserContext(); }
CommonUtilManageScript.set_defaultSucceededCallback = function(value) { 
 CommonUtilManageScript._staticInstance.set_defaultSucceededCallback(value); }
CommonUtilManageScript.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return CommonUtilManageScript._staticInstance.get_defaultSucceededCallback(); }
CommonUtilManageScript.set_defaultFailedCallback = function(value) { 
CommonUtilManageScript._staticInstance.set_defaultFailedCallback(value); }
CommonUtilManageScript.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return CommonUtilManageScript._staticInstance.get_defaultFailedCallback(); }
CommonUtilManageScript.set_path("/WCGZoneWCF/CommonUtilManageScript.svc");
CommonUtilManageScript.GetUTCList= function(UTCDistance,onSuccess,onFailed,userContext) {
/// <param name="UTCDistance" type="Number">System.Int32</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>
CommonUtilManageScript._staticInstance.GetUTCList(UTCDistance,onSuccess,onFailed,userContext); }
CommonUtilManageScript.GetUTCListByCity= function(CityNo,onSuccess,onFailed,userContext) {
/// <param name="CityNo" type="Number">System.Int32</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>
CommonUtilManageScript._staticInstance.GetUTCListByCity(CityNo,onSuccess,onFailed,userContext); }
