Ejemplo n.º 1
0
        public ActionResult CustomerList(CustomerQueryModel queryModel)
        {
            PagedList <CustomerInfo> list = null;

            try
            {
                list = customer.getOrderList(queryModel.StartTime, queryModel.EndTime, queryModel.Email, queryModel.Mobile, queryModel.CountryArea, new Models.PagingModel {
                    IsPaging = true, PageIndex = this.PageNo, PageSize = this.PageSize
                });
            }
            catch (Exception ext)
            {
                LogHelper.Error(ext);
            }

            return(View(list));
        }