push test

This commit is contained in:
staccatomamba
2017-08-28 16:41:19 +02:00
parent ed546541b7
commit b5989dfd72
22 changed files with 825 additions and 529 deletions

View File

@@ -957,8 +957,7 @@ namespace BeWo.Service.ServiceImplementations
{
try
{
var absenceTimes = DAOFactory.SearchDAO.GetAllAbsenceTimesInIntervalByEmployee(pStart, pEnd, pEmployeeOid,
pHasRightToSeeAllEmployeeAppointments);
var absenceTimes = DAOFactory.SearchDAO.GetAllAbsenceTimesInIntervalByEmployee(pStart, pEnd, pEmployeeOid, pHasRightToSeeAllEmployeeAppointments);
return MapperFactory.AbsenceTimeDC_AbsenceTime.MapToNewDCs(absenceTimes).OrderBy(a => a.Start).ToList();
}