Kilometerauswertung hinzugefügt

This commit is contained in:
Lyndon Jetten
2020-07-07 16:09:48 +02:00
parent 645c755907
commit 5137406410
22 changed files with 3536 additions and 1968 deletions

View File

@@ -205,5 +205,19 @@ namespace ReportingService.ServiceImplementations
return null;
}
}
public MemoryStream CreateKilometerauswertung(long customerOid, DateTime rangeDate)
{
var reportCreator = GetReportCreator();
return CreateReportStream(reportCreator.CreateKilometerauswertung(customerOid, rangeDate));
}
public MemoryStream CreateKilometerauswertungForAllCustomers(List<long> customerOids, DateTime rangeDate)
{
var reportCreator = GetReportCreator();
return CreateReportStream(reportCreator.CreateKilometerauswertungForAllCustomers(customerOids, rangeDate));
}
}
}