Esempio n. 1
0
        public ActionResult InserirOni(Onibus o)
        {
            var g = new AcoesGerente();

            g.InsertOni(o);

            return(RedirectToAction("ListOni"));
        }
Esempio n. 2
0
        public ActionResult DeletaMot(Motorista m)
        {
            var g = new AcoesGerente();

            g.ExcluirMot(m);

            return(RedirectToAction("ListMot"));
        }
Esempio n. 3
0
        public ActionResult InserirMot(Motorista p)
        {
            var g = new AcoesGerente();


            g.InsertMot(p);

            return(RedirectToAction("ListMot"));
        }
Esempio n. 4
0
        public ActionResult Inserir(Passageiro p)
        {
            var g = new AcoesGerente();


            g.Insert(p);

            return(RedirectToAction("Index"));
        }
Esempio n. 5
0
        public ActionResult AlteraOni(Onibus o)
        {
            var g = new AcoesGerente();

            g.AtualizarONI(o);


            return(RedirectToAction("ListOni"));
        }
Esempio n. 6
0
        public ActionResult FimDeletar(Passageiro p)
        {
            var g = new AcoesGerente();

            g.Excluir(p);



            return(RedirectToAction("Index"));
        }
Esempio n. 7
0
        public ActionResult Altera(Passageiro p)
        {
            var g = new AcoesGerente();


            g.Atualizar(p);



            return(RedirectToAction("Index"));
        }
Esempio n. 8
0
        public ActionResult AlteraMot(Motorista p)
        {
            var g = new AcoesGerente();


            g.AtualizarMot(p);



            return(RedirectToAction("ListMot"));
        }
Esempio n. 9
0
        /////////////////////////////////////////////////////////////

        //Motorista


        public ActionResult ListMot(Motorista p)
        {
            var GerenteLista = new AcoesGerente().ListarMot();

            return(View(GerenteLista));
        }