feat(mitarbeiter-erstellen): implement employee form functionality
This commit is contained in:
parent
2dc8956142
commit
b6919107da
3 changed files with 35 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Reference in a new issue