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