Beispiel #1
0
        public async Task <IActionResult> UpdateDoctor(Guid nurseId, [FromBody] NurseDto nurse)
        {
            await _nurseService.UpdateNurse(nurseId, nurse.Street, nurse.PostCode,
                                            nurse.PhoneNumber, nurse.City);

            return(NoContent());
        }