Skip to content

Commit

Permalink
Merge pull request #2149 from SwedbankPay/DEVP-333-Correct-example-by…
Browse files Browse the repository at this point in the history
…-adding-await

Devp 333 correct example by adding await
  • Loading branch information
the-anders-jarold authored Mar 6, 2024
2 parents 3e0a464 + 7b681d3 commit 9bad877
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions pax-terminal/NET/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ icon:
outlined: true

---
## March 6 2024

### .Net SDK 1.3.24066

* New package ID. SwedbankPay.Pax.Sdk. Still the same namespaces and dll name.
* Fix for display messages from fuel app that lacks text id.
* Added support for AdminRequest with service identification OM02, OM03 and OM04, regarding the Store-And-Forward
* Fixed bug for PrintRequest with DocumentQualifier other other than CashierReceipt or CustomerReceipt.
* Possibility for Net Framework 4.0. Now supports Netstandard2.0, net framework 4.5 and 4.0.

## February 27 2024

### .Net SDK 1.3.24047
Expand Down
2 changes: 1 addition & 1 deletion pax-terminal/NET/tutorial/payment-with-orderid.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class PaxImplementation : ISwpTrmCallbackInterface

public async Task CreatePayment()
{
var pr = Pax.PaymentAsync(new TransactionSetup() {
var pr = await Pax.PaymentAsync(new TransactionSetup() {
AcquirerData = JsonSerializer.Serialize(new { purchaseOrderNumber = "123456789"}),
Amount = (decimal)120
};
Expand Down

0 comments on commit 9bad877

Please sign in to comment.