protected string GivenNameString(string appendIfNotEmpty) { if (!string.IsNullOrEmpty(GivenName.GetValueOrDefault())) { return(GivenName + appendIfNotEmpty); } else { return(""); } }