Example #1
0
 private void deleteAxRecord()
 {
     // If the record is found then delete the record.
     if (axRecord.Found)
     {
         // Start a transaction that can be committed.
         ax.TTSBegin();
         axRecord.Delete();
         // Commit the transaction.
         ax.TTSCommit();
     }
 }