public Report GetReport(int reportId)
        {
            var report = new Business.Logic.Report(reportId);

            report.Refresh();
            return(new Report(report));
        }
예제 #2
0
        public ActionResult <Report> GetReport(int reportId)
        {
            var report = new Business.Logic.Report(reportId);

            report.Refresh();
            return(new Report(report));
        }