* @param config Die Anwendungseinstellungen.
* @param employee der Mitarbeiter, der den Client benutzt.
*/
private Logic(ClientConfiguration config, Employee employee) throws LogicInitFailedException {
if (config == null || employee == null) {
throw new LogicInitFailedException("No employee or config was passed");
}
this.config = config;
clientDBControl = new ClientDBControl(employee);
this.employee = clientDBControl.getOwner();