public string PostUser(UserDTO userDTO) { if (!userService.Save(userDTO)) { return("User is not inserted"); } return("User is inserted"); }