Package modelos

Examples of modelos.Empleado


public class AdmUsuarios {
   
    private ArrayList<Usuario> dbUsuarios = new ArrayList<Usuario>();
   
    private void simularTabla(){
        this.dbUsuarios.add(new Empleado("001", "Carlos", "Salinas", "carsal", "carsal111"));      
        this.dbUsuarios.add(new Empleado("002", "Sandra", "Perez", "sanper", "sanper222"));
        this.dbUsuarios.add(new Empleado("003", "Jose", "Rabanal", "josrab", "josrab333"));
        this.dbUsuarios.add(new Empleado("004", "Gonzalo", "Gutierrez", "gongut", "gongut444"));
       
    }
View Full Code Here

TOP

Related Classes of modelos.Empleado

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.