Created
December 1, 2012 11:25
-
-
Save rvazquezglez/4181580 to your computer and use it in GitHub Desktop.
Clase de dominio que hace referencia a banco.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Banco implements java.io.Serializable { | |
private Integer idbanco; | |
private String nombre; | |
public Banco() { | |
} | |
public Banco(Integer idbanco, String nombre) { | |
this.idbanco = idbanco; | |
this.nombre = nombre; | |
} | |
public Integer getIdbanco() { | |
return this.idbanco; | |
} | |
public void setIdbanco(Integer idbanco) { | |
this.idbanco = idbanco; | |
} | |
public String getNombre() { | |
return this.nombre; | |
} | |
public void setNombre(String nombre) { | |
this.nombre = nombre; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment