public ActionResult Search_AppFee(string p_keysearch, int p_CurrentPage, string p_column, string p_type_sort) { try { decimal _total_record = 0; string p_to = ""; string p_from = CommonFuc.Get_From_To_Page(p_CurrentPage, ref p_to); AppFeeFixBL _obj_bl = new AppFeeFixBL(); List <AppFeeFixInfo> _lst = _obj_bl.AppFee_Search(p_keysearch, ref _total_record, p_from, p_to); string htmlPaging = WebApps.CommonFunction.AppsCommon.Get_HtmlPaging <AppFeeFixInfo>((int)_total_record, 1, "bản ghi"); ViewBag.Paging = htmlPaging; ViewBag.Obj = _lst; ViewBag.SumRecord = _total_record; } catch (Exception ex) { Logger.LogException(ex); } return(PartialView("~/Areas/Manager/Views/AppFee/_PartialTableAppFee.cshtml")); }