コード例 #1
0
        public IActionResult Index()
        {
            ShowAllAccountsViewModel model = new ShowAllAccountsViewModel();

            model.Accounts = _accountFactory.AccountCollection().GetAllAccounts();
            return(View(model));
        }