Exemplo n.º 1
0
        public WalletEditPageViewModel(IWalletService walletService, IWalletCategoryService walletCategoryService, IWalletBankService walletBankService, ICurrencyService currencyService)
        {
            this.walletService         = walletService;
            this.walletCategoryService = walletCategoryService;
            this.walletBankService     = walletBankService;
            this.currencyService       = currencyService;
            modified = false;

            DeleteWalletCommand = new AsyncCommandHandler(DeleteWallet);

            Wallet = new Wallet();
        }
Exemplo n.º 2
0
 public BanksPageViewModel(IBankService bankService, IWalletBankService walletBankService)
 {
     this.bankService       = bankService;
     this.walletBankService = walletBankService;
 }