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)); }