示例#1
0
        public ActionResult ListAccountUser(ListAccountUsers request)
        {
            string pageHtml = string.Empty;

            if (ModelState.IsValid)
            {
                ModelState.Clear();
                request.Query(out pageHtml);
                ViewBag.pageHtml = MvcHtmlString.Create(pageHtml);
            }
            return(View(request));
        }
示例#2
0
 public ActionResult ListAccountUserExport(ListAccountUsers request)
 {
     _logger.LogWithSerialNo(LogTypes.AccountExport, SerialNoHelper.Create(), 0);
     return(ListAccountUser(request));
 }