Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BuyEDalerNavigationArgs.cs
2
4{
9 {
14 {
15 }
16
22 public BuyEDalerNavigationArgs(string Currency, TaskCompletionSource<decimal?> Result)
23 {
24 this.Currency = Currency;
25 this.Result = Result;
26 }
27
31 public string? Currency { get; }
32
36 public TaskCompletionSource<decimal?>? Result { get; }
37 }
38}
An base class holding page specific navigation parameters.
Holds navigation parameters specific to buying eDaler.
TaskCompletionSource< decimal?>? Result
Amount, or null if user cancels operation.
BuyEDalerNavigationArgs()
Creates a new instance of the BuyEDalerNavigationArgs class.
BuyEDalerNavigationArgs(string Currency, TaskCompletionSource< decimal?> Result)
Creates a new instance of the BuyEDalerNavigationArgs class.