Beispiel #1
0
        public ActionResult UserList(int PageIndex = 1)
        {
            var userID = UserID;
            var page   = new PagingModel()
            {
                PageIndex = PageIndex, PageSize = 50
            };

            try
            {
                var dataList = adminUserBLL.GetAdminUserList(page);
                return(View(dataList));
            }
            catch (Exception ex)
            {
                LogHelper.Error(ex);
            }
            return(View(new PageOf <AdminUserInfo>()));
        }