Ejemplo n.º 1
0
 public void UpdateTransactionLog(string response, Guid orderId)
 {
     using (var connection = ConnectionFactory.GetConnection())
     {
         var processor = new ResellerClub.DataAccess.PaymentProcessor(connection);
         processor.UpdateTransactionLog(response, orderId);
     }
 }
Ejemplo n.º 2
0
 private void Test()
 {
     using (var connection = ConnectionFactory.GetConnection())
     {
         var DALP = new ResellerClub.DataAccess.PaymentProcessor(connection);
         DALP.UpdateTable_1();
     }   //=========
 }
Ejemplo n.º 3
0
 public void InsertTransactionLog(string request, Guid orderId)
 {
     using (var connection = ConnectionFactory.GetConnection())
     {
         var processor = new ResellerClub.DataAccess.PaymentProcessor(connection);
         processor.InsertTransactionLog(request, orderId);
     }
 }