public async Task PutUser(UpdateUserDto updateUser, [FromRoute] int id)
 {
     await _service.UpdateUser(updateUser, id);
 }