public Report GetReport(int reportId) { var report = new Business.Logic.Report(reportId); report.Refresh(); return(new Report(report)); }
public ActionResult <Report> GetReport(int reportId) { var report = new Business.Logic.Report(reportId); report.Refresh(); return(new Report(report)); }
internal Report(Business.Logic.Report report) { Id = report.Id; Name = report.Name; RegisterNumber = report.RegisterNumber; ReleaseYear = report.ReleaseYear; PageCount = report.PageCount; }