예제 #1
0
 public ActionResult CadastroLocal(Local local)
 {
     locRep.Create(local);
     return RedirectToAction("Login");
 }
예제 #2
0
 public ActionResult UpdateLocal(Local local)
 {
     locRep.Update(local);
     return RedirectToAction("Local");
 }