Ejemplo n.º 1
0
 public ActionResult Atualizar(AcrescimoMeioTransporte acrescimoMeioTransporte)
 {
     if (ModelState.IsValid)
     {
         var dao = new AcrescimoMeioTransporteDAO();
         dao.Atualizar(acrescimoMeioTransporte);
         return(RedirectToAction("Listar"));
     }
     return(View("Atualizar"));
 }