示例#1
0
        /// <summary>
        /// 显示操作记录页面。
        /// </summary>
        /// <returns>显示界面</returns>
        public ActionResult OperationRecords(OperationRecordSO so)
        {
            var rsp = this.OperationRecordService.SearchOperationRecords(so);

            return View(rsp);
        }
 /// <summary>
 /// 查询操作记录。
 /// </summary>
 /// <param name="so">查询对象</param>
 /// <returns>操作记录结果</returns>
 public ResponseSet<OperationRecord> SearchOperationRecords(OperationRecordSO so)
 {
     return this.InvokePagingService(nameof(SearchOperationRecords),
         (out int totalRecords) => this.Persistence.QueryForPaginatedList<OperationRecord>(OperationRecordNamespace, "SearchOperationRecords", out totalRecords, so), so);
 }