addNamespace("f54u.BLL.AppModule");
f54u.BLL.AppModule.BL_Comment_class = Class.create();
f54u.BLL.AppModule.BL_Comment_class.prototype = (new AjaxPro.Request()).extend({
	InsertCommentsInfo: function(docID, title, userInfoID, content, status, rank, style, callback) {
		return this.invoke("InsertCommentsInfo", {"docID":docID, "title":title, "userInfoID":userInfoID, "content":content, "status":status, "rank":rank, "style":style}, callback);
	},
	IsExistsCommentsInfo: function(docID, userInfoID, content, style, callback) {
		return this.invoke("IsExistsCommentsInfo", {"docID":docID, "userInfoID":userInfoID, "content":content, "style":style}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/f54u.BLL.AppModule.BL_Comment,f54u.BLL.ashx";
	}
})
f54u.BLL.AppModule.BL_Comment = new f54u.BLL.AppModule.BL_Comment_class();

