addNamespace("GIG.Knowledge.Training.Controls");
GIG.Knowledge.Training.Controls.TrainingClassInfo_class = Class.create();
GIG.Knowledge.Training.Controls.TrainingClassInfo_class.prototype = (new AjaxPro.Request()).extend({
	SetUserJoinType: function(classId, joinType, callback) {
		return this.invoke("SetUserJoinType", {"classId":classId, "joinType":joinType}, callback);
	},
	SetUserGrade: function(classId, grade, callback) {
		return this.invoke("SetUserGrade", {"classId":classId, "grade":grade}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/GIG.Knowledge.Training.Controls.TrainingClassInfo,GIG.Knowledge.Training.ashx";
	}
})
GIG.Knowledge.Training.Controls.TrainingClassInfo = new GIG.Knowledge.Training.Controls.TrainingClassInfo_class();

