コード例 #1
0
        public List <SanPhamModel> getfulldetails(int pageIndex, int pageSize)
        {
            long total = 0;
            var  kq    = isp.getspwithfulldetail(pageIndex, pageSize, out total);

            foreach (var item in kq)
            {
                item.Total = total;
            }
            return(kq);
        }