Beispiel #1
0
 public LoginPINViewModel(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigation,
                          IBLConfigFile configFile)
     : base(navigation, smartNavigator, pageNavigation)
 {
     ConfigFile       = configFile;
     ForgotPINCommand = new Command(DoRestorePIN);
 }
Beispiel #2
0
 public CreatePINViewModel(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigation,
                           IBLConfigFile configFile)
     : base(navigation, smartNavigator, pageNavigation)
 {
     ConfigFile  = configFile;
     NextCommand = new Command(DoNext, CanDoNext);
 }
Beispiel #3
0
 protected ViewModelBase(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigation)
 {
     Navigation     = navigation;
     SmartNavigator = smartNavigator;
     PageNavigator  = pageNavigation;
 }
Beispiel #4
0
 public AddWalletViewModel(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigator)
     : base(navigation, smartNavigator, pageNavigator)
 {
     NextCommand = new Command(DoNext, CanNext);
 }
Beispiel #5
0
 public WalletInfoViewModel(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigator,
                            string address)
     : base(navigation, smartNavigator, pageNavigator)
 {
     Address = address;
 }
 public WalletsViewModel(INavigation navigation, ISmartNavigator smartNavigator, IPageNavigator pageNavigation)
     : base(navigation, smartNavigator, pageNavigation)
 {
     AddWalletCommand = new Command(DoAddWallet);
 }