Exemplo n.º 1
0
        public ActionResult GetListRewardApp(int page, int take)
        {
            decimal total = 0;
            var     model = _agencyDa.GetListRewardApp(CustomerId, 0, page, take, 0, DateTime.Today.AddDays(1).TotalSeconds(), "", ref total);

            return(Json(new BaseResponse <List <ListRewardAgencyApp> >()
            {
                Code = 200, Data = model, Total = total
            }, JsonRequestBehavior.AllowGet));
        }