Example #1
0
 // **************************************
 // GetContactInfo
 // **************************************
 public static Contact GetContactInfo(this SiteProfile profile, User user)
 {
     return (user != null ? user.GetContactInfo() : null) ?? profile.Contacts.FirstOrDefault(c => c.IsDefault);
 }