Dynamische HomeViewPanels

This commit is contained in:
rene
2019-08-15 11:06:50 +02:00
parent ae11111bc6
commit 0f2ef3a075
14 changed files with 415 additions and 199 deletions

View File

@@ -106,6 +106,13 @@ namespace ReportingService.ServiceImplementations
}
}
public MemoryStream CreateCustomReport(long employeeOid, String reportName)
{
var reportCreator = GetReportCreator();
return CreateReportStream(reportCreator.CreateCustomReport(employeeOid, reportName));
}
private static MemoryStream CreateReportStream(XtraReport pReport)
{
pReport.CreateDocument();