Example #1
0
 public ActionResult Criar(ROT rot)
 {
     if (ModelState.IsValid)
     {
         appRot.Salvar(rot);
         return RedirectToAction("Lista");
     }
     return View(rot);
 }
Example #2
0
 public void Salvar(ROT rot)
 {
     _repositorio.Salvar(rot);
 }
Example #3
0
 public void Excluir(ROT rot)
 {
     _repositorio.Excluir(rot);
 }