feat(mitarbeiter-erstellen): implement employee form functionality

This commit is contained in:
Jan K9f 2025-01-15 13:47:56 +01:00
commit b6919107da
Signed by: jank
GPG key ID: 50620ADD22CD330B
3 changed files with 35 additions and 1 deletions

View file

@ -23,6 +23,10 @@ export class EmployeeService {
}
}
createEmployee(employee: EmployeeResponseDTO) {
}
updateEmployee(employee: EmployeeResponseDTO) {
this.http.put(`${SkillService.BASE_URL}/employees/${employee.id}`, this.responseDtoToPutDto(employee)).subscribe();
}