コード例 #1
0
 private void Create(int userId, int buyId, string transactionHash)
 {
     TransactionBusiness.ValidateTransaction(transactionHash);
     using (var transaction = new TransactionalDapperCommand())
     {
         InternalCreate(transaction, userId, buyId, transactionHash);
         transaction.Commit();
     }
 }