Package controller

Examples of controller.ControllerVisita


    public BeanVisitas() {
    }

    public void AgregarVisita() {
        ControllerVisita cont = new ControllerVisita();
        cont.agregarVisita(Nombre, fecha, motivo, estado, numero);
    }
View Full Code Here


        ControllerVisita cont = new ControllerVisita();
        cont.agregarVisita(Nombre, fecha, motivo, estado, numero);
    }

    public List<Visita> listaVisitas() {
        ControllerVisita cont = new ControllerVisita();
        return cont.ListaVisitas();
    }
View Full Code Here

TOP

Related Classes of controller.ControllerVisita

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.