Exemple #1
0
        public ActionResult GetListMessGoogle(string name, int currentRecord, int numberRecord)
        {
            var total = 0;
            var list  = supportRepository.GetListMessGoogle(out total, name, currentRecord, numberRecord);

            return(Json(new
            {
                total = total,
                list = list
            },
                        JsonRequestBehavior.AllowGet));
        }