Exemplo n.º 1
0
        //displays all user accounts on the website
        public ActionResult UserAccounts()
        {
            var applications = accountDAL.fetchAccounts();

            PlugPool.ViewModels.Accounts.IndexViewModel model = new PlugPool.ViewModels.Accounts.IndexViewModel(applications);
            return(View(model));
        }