Exemplo n.º 1
0
        public bool?ShowTransferDialog(Account fromAccount, IList <Account> allAccountsOfCustomer)
        {
            var transferWindow = new TransferWindow(fromAccount, allAccountsOfCustomer, _accountRepository);

            return(transferWindow.ShowDialog());
        }
        public bool?ShowTransferDialog(Account fromAccount, IEnumerable <Account> allAccountsOfCustomer)
        {
            var transferWindow = new TransferWindow(fromAccount, allAccountsOfCustomer, _accountService);

            return(transferWindow.ShowDialog());
        }