public ActionResult InserirOni(Onibus o) { var g = new AcoesGerente(); g.InsertOni(o); return(RedirectToAction("ListOni")); }
public ActionResult DeletaMot(Motorista m) { var g = new AcoesGerente(); g.ExcluirMot(m); return(RedirectToAction("ListMot")); }
public ActionResult InserirMot(Motorista p) { var g = new AcoesGerente(); g.InsertMot(p); return(RedirectToAction("ListMot")); }
public ActionResult Inserir(Passageiro p) { var g = new AcoesGerente(); g.Insert(p); return(RedirectToAction("Index")); }
public ActionResult AlteraOni(Onibus o) { var g = new AcoesGerente(); g.AtualizarONI(o); return(RedirectToAction("ListOni")); }
public ActionResult FimDeletar(Passageiro p) { var g = new AcoesGerente(); g.Excluir(p); return(RedirectToAction("Index")); }
public ActionResult Altera(Passageiro p) { var g = new AcoesGerente(); g.Atualizar(p); return(RedirectToAction("Index")); }
public ActionResult AlteraMot(Motorista p) { var g = new AcoesGerente(); g.AtualizarMot(p); return(RedirectToAction("ListMot")); }
///////////////////////////////////////////////////////////// //Motorista public ActionResult ListMot(Motorista p) { var GerenteLista = new AcoesGerente().ListarMot(); return(View(GerenteLista)); }