addNamespace("autofuwu.BLL");
autofuwu.BLL.Ajax_class = Class.create();
autofuwu.BLL.Ajax_class.prototype = (new AjaxPro.Request()).extend({
	IDCheck: function(userid, callback) {
		return this.invoke("IDCheck", {"userid":userid}, callback);
	},
	GetPrice: function(partid, uid, callback) {
		return this.invoke("GetPrice", {"partid":partid, "uid":uid}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/autofuwu.BLL.Ajax,autofuwu.BLL.ashx";
	}
})
autofuwu.BLL.Ajax = new autofuwu.BLL.Ajax_class();

