addNamespace("cityProperties");
cityProperties.CareersInCP_class = function() {};
Object.extend(cityProperties.CareersInCP_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	SetCityValue: function(getValue) {
		return this.invoke("SetCityValue", {"getValue":getValue}, this.SetCityValue.getArguments().slice(1));
	},
	LoadCity: function(whereclause) {
		return this.invoke("LoadCity", {"whereclause":whereclause}, this.LoadCity.getArguments().slice(1));
	},
	GetCareers: function(type) {
		return this.invoke("GetCareers", {"type":type}, this.GetCareers.getArguments().slice(1));
	},
	GetCityCareer: function(cityids, CountID) {
		return this.invoke("GetCityCareer", {"cityids":cityids, "CountID":CountID}, this.GetCityCareer.getArguments().slice(2));
	},
	url: '/ajaxpro/cityProperties.CareersInCP,cityProperties.ashx'
}));
cityProperties.CareersInCP = new cityProperties.CareersInCP_class();

