addNamespace("StudentNest.MiddleLayer.Common");
StudentNest.MiddleLayer.Common.FreeTutoring_class = Class.create();
StudentNest.MiddleLayer.Common.FreeTutoring_class.prototype = (new AjaxPro.Request()).extend({
	GetDistricts: function(p_intStateId, callback) {
		return this.invoke("GetDistricts", {"p_intStateId":p_intStateId}, callback);
	},
	GetSchools: function(p_intStateId, p_intDistrict, callback) {
		return this.invoke("GetSchools", {"p_intStateId":p_intStateId, "p_intDistrict":p_intDistrict}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/StudentNest.MiddleLayer.Common.FreeTutoring,StudentNest.ashx";
	}
})
StudentNest.MiddleLayer.Common.FreeTutoring = new StudentNest.MiddleLayer.Common.FreeTutoring_class();

