예제 #1
0
        public ActionResult GetAuditReport(string StartDate, string EndDate)
        {
            List <AuditReportModel> reportItems = _repo.GetAuditReport(StartDate, EndDate);

            return(Json(reportItems, JsonRequestBehavior.AllowGet));
        }