if(typeof AjaxTest == "undefined") AjaxTest={};
AjaxTest.AjaxMethod_class = function() {};
Object.extend(AjaxTest.AjaxMethod_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCountryCodeList: function(ContinentID) {
		return this.invoke("GetCountryCodeList", {"ContinentID":ContinentID}, this.GetCountryCodeList.getArguments().slice(1));
	},
	GetCountryCodeList2: function(ContinentID) {
		return this.invoke("GetCountryCodeList2", {"ContinentID":ContinentID}, this.GetCountryCodeList2.getArguments().slice(1));
	},
	GetCityCodeList: function(CountryID) {
		return this.invoke("GetCityCodeList", {"CountryID":CountryID}, this.GetCityCodeList.getArguments().slice(1));
	},
	GetCityCodeList2: function(CountryID) {
		return this.invoke("GetCityCodeList2", {"CountryID":CountryID}, this.GetCityCodeList2.getArguments().slice(1));
	},
	GetTourArticleSort2List: function(Sort1) {
		return this.invoke("GetTourArticleSort2List", {"Sort1":Sort1}, this.GetTourArticleSort2List.getArguments().slice(1));
	},
	GetServerTime: function() {
		return this.invoke("GetServerTime", {}, this.GetServerTime.getArguments().slice(0));
	},
	AddTwo: function(firstInt, secondInt) {
		return this.invoke("AddTwo", {"firstInt":firstInt, "secondInt":secondInt}, this.AddTwo.getArguments().slice(2));
	},
	url: '/ajaxpro/AjaxTest.AjaxMethod,App_Code.ashx'
}));
AjaxTest.AjaxMethod = new AjaxTest.AjaxMethod_class();


