Exemple #1
0
 public override void Update(PrivateMessage PrivateMessage)
 {
     using (TransactionScope transaction = new TransactionScope(mConfiguration))
     {
         PrivateMessageDataStore pmDS = new PrivateMessageDataStore(transaction);
         pmDS.Update(PrivateMessage);
         transaction.Commit();
     }
 }