Line 901: string encryptedId = content.ContentId == 0 ? "" : crypto.EncryptInfo(content.ContentId.ToString());
Line 902: //string decryptedId = crypto.Decrypt(encryptedId);
Line 903: var churchInfo = content.Addresses.Where(a => a.IsLocation == true).First() ?? new Address(true);
Line 904: var churchContact = content.Addresses.Where(a => a.IsLocation == false).First() ?? new Address(false);
Line 905: string churchDirType = content.ContentTags?.Any() == true && content.ContentTags.Where(ct => ct.TagId == 101)?.Any() == true ? "Church of the Week " : "Church Directory";
|