addNamespace("Flotu.Web");
Flotu.Web.NotifyProcess_class = function() {};
Object.extend(Flotu.Web.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/Flotu.Web.NotifyProcess,Flotu.Web.ashx'
}));
Flotu.Web.NotifyProcess = new Flotu.Web.NotifyProcess_class();

