public string GetOtherReportPrintID(string accno, string modalityType, string templateType, string site) { var service = new ReportDBService(); string template = String.Empty; DataTable data = null; string templateID = ""; service.GetOtherReportPrintTemplate(accno, modalityType, templateType, site, out template, out data, 1, out templateID); return(templateID); }
public PrintDataDto GetOtherReportPrintData(string accno, string modalityType, string templateType, string site) { var service = new ReportDBService(); string template = String.Empty; DataTable data = null; string templateID = ""; service.GetOtherReportPrintTemplate(accno, modalityType, templateType, site, out template, out data, 0, out templateID); return(new PrintDataDto { Template = template, data = data }); }