예제 #1
0
 private void OnRecordCreated(ItemRecord record)
 {
     if (!this.IsCharter || record.IsNew)
     {
         return;
     }
     PetitionRecord.LoadRecord(record.OwnerId);
 }
예제 #2
0
 private void OnRecordCreated(ItemRecord record)
 {
     if (IsCharter)
     {
         if (!record.IsNew)
         {
             // this is executed in the IO-context
             PetitionRecord.LoadRecord(record.OwnerId);
         }
     }
 }