Exemplo n.º 1
0
 public ActionResult Edit([Bind(Include = "ACC_IDE_ACCOUNT,ACC_DES_ACCOUNT,ACC_FH_CREATED")] AccountingAccount accountingAccount)
 {
     if (ModelState.IsValid)
     {
         if (_db.Update(accountingAccount))
         {
             return(RedirectToAction("Index"));
         }
     }
     return(View(accountingAccount));
 }