public string PutUser(UserDTO userDTO) { if (!userService.Update(userDTO)) { return("User is not updated"); } return("User is updated"); }