public UserDto(string id, string userName, string email, ProfileDto profile) { Id = id; UserName = userName; Email = email; Profile = profile; }
private static bool IsProfileEmpty(ProfileDto profile) { return(profile.Age == null && profile.Location == null && profile.Sex == null); }