Exemple #1
0
 public ActionResult Account(AccountUpdateModel model)
 {
     if (ModelState.IsValid)
     {
         accountInformation.UpdateAccount(model);
     }
     return(View());
 }