addNamespace("GolfOnLife.Match.Course");
GolfOnLife.Match.Course.CourseHole_class = Class.create();
GolfOnLife.Match.Course.CourseHole_class.prototype = (new AjaxPro.Request()).extend({
	BindCourseData: function(p_CourseID, p_HoleNo, strID, callback) {
		return this.invoke("BindCourseData", {"p_CourseID":p_CourseID, "p_HoleNo":p_HoleNo, "strID":strID}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/GolfOnLife.Match.Course.CourseHole,GolfOnLife.Match.ashx";
	}
})
GolfOnLife.Match.Course.CourseHole = new GolfOnLife.Match.Course.CourseHole_class();


