コード例 #1
0
ファイル: PageInfo.cs プロジェクト: x55756016/gFistfight
        public static string ConvertJson(IEnumerable rows, int total)
        {
            var pageList = new PageJson(rows, total);

            return(pageList.JsonSerialize());
        }
コード例 #2
0
 public static string ConvertJson(IEnumerable rows, int total)
 {
     var pageList = new PageJson(rows, total);
     return pageList.JsonSerialize();
 }