addNamespace("School.Components.BusApp");
School.Components.BusApp.RegLoginApp_class = Class.create();
Object.extend(School.Components.BusApp.RegLoginApp_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	IsRepeated: function(UserID) {
		return this.invoke("IsRepeated", {"UserID":UserID}, this.IsRepeated.getArguments().slice(1));
	},
	IsValidatedCode: function(ValidateCode) {
		return this.invoke("IsValidatedCode", {"ValidateCode":ValidateCode}, this.IsValidatedCode.getArguments().slice(1));
	},
	GetSchoolListByAreaCode: function(AreaCode, SchoolType, NewSchoolID) {
		return this.invoke("GetSchoolListByAreaCode", {"AreaCode":AreaCode, "SchoolType":SchoolType, "NewSchoolID":NewSchoolID}, this.GetSchoolListByAreaCode.getArguments().slice(3));
	},
	GetStuList: function(SchoolID, SchoolGrade, SchoolClass, NewStuID) {
		return this.invoke("GetStuList", {"SchoolID":SchoolID, "SchoolGrade":SchoolGrade, "SchoolClass":SchoolClass, "NewStuID":NewStuID}, this.GetStuList.getArguments().slice(4));
	},
	initialize: function() {
		this.url = '/ajaxpro/School.Components.BusApp.RegLoginApp,School.Components.ashx';
	}
}));
School.Components.BusApp.RegLoginApp = new School.Components.BusApp.RegLoginApp_class();


