OrganisationListReport hinzugefügt

This commit is contained in:
2023-10-18 17:50:40 +02:00
parent 0659e3037c
commit 100415ad94
5 changed files with 62 additions and 3 deletions

View File

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