addNamespace("Yc.Web");
Yc.Web.Project_class = Class.create();
Object.extend(Yc.Web.Project_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetProfessionList: function() {
		return this.invoke("GetProfessionList", {}, this.GetProfessionList.getArguments().slice(0));
	},
	GetProvinceList: function() {
		return this.invoke("GetProvinceList", {}, this.GetProvinceList.getArguments().slice(0));
	},
	GetCityList: function(pid) {
		return this.invoke("GetCityList", {"pid":pid}, this.GetCityList.getArguments().slice(1));
	},
	GetFundsList: function() {
		return this.invoke("GetFundsList", {}, this.GetFundsList.getArguments().slice(0));
	},
	GetCycleList: function() {
		return this.invoke("GetCycleList", {}, this.GetCycleList.getArguments().slice(0));
	},
	IsApply: function(pid) {
		return this.invoke("IsApply", {"pid":pid}, this.IsApply.getArguments().slice(1));
	},
	initialize: function() {
		this.url = '/ajaxpro/Yc.Web.Project,Yc.Web.ashx';
	}
}));
Yc.Web.Project = new Yc.Web.Project_class();

