예제 #1
0
        public ActionResult GetReport(ProjectReportSearch search)
        {
            search.currentUserID = Common.CommonHelper.CurrentUser;
            DataTable dt         = _reportAppService.GetProjectManpowerReport(search);
            string    JSONresult = JsonConvert.SerializeObject(dt);

            return(Json(new { data = JSONresult }, JsonRequestBehavior.AllowGet));
        }