Package model

Examples of model.Visita


    public List<Visita> getListaDeVisitas() {
        return ListaDeVisitas;
    }
   
    public void agregarVisita(String nombre,Date fecha,String motivo,String estado,String numero){
        Visita v = new Visita();
        v.setNombre(nombre);
        v.setFecha(fecha);
        v.setMotivo(motivo);
        v.setEstado(estado);
        v.setNumero(numero);
        ListaDeVisitas.add(v);
    }
View Full Code Here

TOP

Related Classes of model.Visita

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.