Exemplo n.º 1
0
 public ActionResult Create(AccountClass acc)
 {
     if (ModelState.IsValid)
     {
         AccountList accList = new AccountList();
         accList.AddAccount(acc);
         return(RedirectToAction("Index"));
     }
     return(View());
 }