示例#1
0
        public ActionResult FactorReport(DateTime?fromDate, DateTime?toDate)
        {
            var report = ReportUtilities.LoadReport("FactorFromDateToDateReport",
                                                    new ReportParameter("FromDate", fromDate.ToString()),
                                                    new ReportParameter("ToDate", toDate.ToString()));

            return(View(report));
        }