if(typeof BLL == "undefined") BLL={};
if(typeof BLL.PCA_class == "undefined") BLL.PCA_class={};
BLL.PCA_class = function() {};
Object.extend(BLL.PCA_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Province: function() {
		return this.invoke("Province", {}, this.Province.getArguments().slice(0));
	},
	City: function(ProvincesID) {
		return this.invoke("City", {"ProvincesID":ProvincesID}, this.City.getArguments().slice(1));
	},
	Area: function(CityID) {
		return this.invoke("Area", {"CityID":CityID}, this.Area.getArguments().slice(1));
	},
	url: '/ajaxpro/BLL.PCA,BLL.ashx'
}));
BLL.PCA = new BLL.PCA_class();


