Esempio n. 1
0
        //displays all profiles that are yet to be approved
        public ActionResult PendingApplications()
        {
            var applications = accountDAL.fetchPending();

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