if(typeof SysClass == "undefined") SysClass={};
if(typeof SysClass.Ajax_Method == "undefined") SysClass.Ajax_Method={};
SysClass.Ajax_Method_class = function() {};
Object.extend(SysClass.Ajax_Method_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	UserNameToRealName: function(shopID) {
		return this.invoke("UserNameToRealName", {"shopID":shopID}, this.UserNameToRealName.getArguments().slice(1));
	},
	GetBalance: function(shopID) {
		return this.invoke("GetBalance", {"shopID":shopID}, this.GetBalance.getArguments().slice(1));
	},
	GetShopID: function() {
		return this.invoke("GetShopID", {}, this.GetShopID.getArguments().slice(0));
	},
	CheckExist: function(shopID) {
		return this.invoke("CheckExist", {"shopID":shopID}, this.CheckExist.getArguments().slice(1));
	},
	url: '/ajaxpro/SysClass.Ajax_Method,SysClass.ashx'
}));
SysClass.Ajax_Method = new SysClass.Ajax_Method_class();

