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));
        }
예제 #3
0
 internal Report(Business.Logic.Report report)
 {
     Id             = report.Id;
     Name           = report.Name;
     RegisterNumber = report.RegisterNumber;
     ReleaseYear    = report.ReleaseYear;
     PageCount      = report.PageCount;
 }