addNamespace("NotifyProcess");
NotifyProcess_class = function() {};
Object.extend(NotifyProcess_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetNotifyList: function(pageSize, pageNumber) {
		return this.invoke("GetNotifyList", {"pageSize":pageSize, "pageNumber":pageNumber}, this.GetNotifyList.getArguments().slice(2));
	},
	DeleteNotifyById: function(NotifyId) {
		return this.invoke("DeleteNotifyById", {"NotifyId":NotifyId}, this.DeleteNotifyById.getArguments().slice(1));
	},
	GetNotifyCount: function() {
		return this.invoke("GetNotifyCount", {}, this.GetNotifyCount.getArguments().slice(0));
	},
	GetAmergeNotify: function() {
		return this.invoke("GetAmergeNotify", {}, this.GetAmergeNotify.getArguments().slice(0));
	},
	url: '/ajaxpro/NotifyProcess,App_Code.ashx'
}));
NotifyProcess = new NotifyProcess_class();

