private void HandlePushNotificationRecords(GDPRContentContext context, MobileContactPart part)
 {
     foreach (var pnRecord in part.MobileRecord)
     {
         pnRecord.UUIdentifier = pnRecord.UUIdentifier.GenerateUniqueString();
         _pushNotificationRepository.Update(pnRecord);
     }
 }
Exemple #2
0
 protected void LazyLoadHandlers(LoadContentContext context, MobileContactPart part)
 {
     // Add handlers that will load content for id's just-in-time
     part.MobileEntries.Loader(() => OnLoader(context));
 }