WohnheimListReport hinzugefügt

This commit is contained in:
2023-10-19 15:59:31 +02:00
parent 7aa760f93f
commit 9f5a39154b
6 changed files with 56 additions and 0 deletions

View File

@@ -289,6 +289,12 @@ namespace ReportingService.ServiceImplementations
return CreateReportStream(reportCreator.CreateEmployeeListReport(oids));
}
public MemoryStream CreateWohnheimListReport(List<long> oids)
{
var reportCreator = GetReportCreator();
return CreateReportStream(reportCreator.CreateWohnheimListReport(oids));
}
public MemoryStream CreateOrganisationListReport(List<long> oids)
{
var reportCreator = GetReportCreator();