BeWoPlanerMobil:

Zeiterfassungseinträge auch ohne Uhrzeit möglich
This commit is contained in:
Lyndon Jetten
2020-09-14 19:07:23 +02:00
parent a641b691b0
commit 42ece55df3
18 changed files with 435 additions and 198 deletions

View File

@@ -1631,5 +1631,19 @@ namespace BeWo.Service.ServiceImplementations
throw Utils.CreateBeWoFaultException(exception);
}
}
public List<CompactCustomerDC> GetActiveCompactCustomersForEmployee(long? employeeOid)
{
try
{
var customers = DAOFactory.SearchDAO.GetAllCustomersForEmployee(employeeOid);
return MapperFactory.CompactCustomerDC_Customer.MapToNewDCs(customers);
}
catch(Exception exception)
{
throw Utils.CreateBeWoFaultException(exception);
}
}
}
}