We currently rely on UserDTO.HasValidId(). The issue with this is that we need to check for null each time we are generating a query.
This consequently multiply the number of tests by 2.
Update all the queries using HasValidId to use the UserQueryValidator.IsUserDTOValid() method.
This consequently multiply the number of tests by 2.
Update all the queries using HasValidId to use the UserQueryValidator.IsUserDTOValid() method.