Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PaymentSuccessPopup.xaml.cs
1using System;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
8
10{
11 public partial class PaymentSuccessPopup
12 {
13 public PaymentSuccessPopup(EDaler.Transaction Transaction, string? Message)
14 {
15 BasePopupViewModel ViewModel = new PaymentSuccessPopupViewModel(Transaction, Message);
16
17 this.InitializeComponent();
18 this.BindingContext = ViewModel;
19 }
20
21 public PaymentSuccessPopup(EDaler.Transaction Transaction)
22 {
23 BasePopupViewModel ViewModel = new PaymentSuccessPopupViewModel(Transaction, null);
24
25 this.InitializeComponent();
26 this.BindingContext = ViewModel;
27 }
28
29 public PaymentSuccessPopup()
30 {
31 this.InitializeComponent();
32 }
33 }
34}
Represents a transaction in the eDaler network.
Definition: Transaction.cs:36
Base class for popup view models/>.