示例#1
0
        public JsonResult FindCPClerks(int id)
        {
            var location = from name in _collectionPointDAO.FindNameByClerkId(id) select new { cp = name };

            return(Json(new { locations = location }, JsonRequestBehavior.AllowGet));
        }