fixes bug #6421
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@45545 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
4eca40d2b4
commit
6bd11e8cc5
|
@ -96,13 +96,22 @@ public class Empresa implements Serializable {
|
||||||
private List<InscricaoEstadual> inscricoesEstaduais;
|
private List<InscricaoEstadual> inscricoesEstaduais;
|
||||||
|
|
||||||
public Empresa() {
|
public Empresa() {
|
||||||
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Empresa(Integer empresaId) {
|
public Empresa(Integer empresaId) {
|
||||||
|
this();
|
||||||
this.empresaId = empresaId;
|
this.empresaId = empresaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Empresa(Integer empresaId, String nombempresa) {
|
||||||
|
this();
|
||||||
|
this.empresaId = empresaId;
|
||||||
|
this.nombempresa = nombempresa;
|
||||||
|
}
|
||||||
|
|
||||||
public Empresa(Integer empresaId, Date fecmodif) {
|
public Empresa(Integer empresaId, Date fecmodif) {
|
||||||
|
this();
|
||||||
this.empresaId = empresaId;
|
this.empresaId = empresaId;
|
||||||
this.fecmodif = fecmodif;
|
this.fecmodif = fecmodif;
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,9 +61,17 @@ public class Pacote implements Serializable {
|
||||||
private List<TipoTarifaPacote> tipoTarifaPacoteList;
|
private List<TipoTarifaPacote> tipoTarifaPacoteList;
|
||||||
|
|
||||||
public Pacote() {
|
public Pacote() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Pacote(Integer pacoteId, String nompacote) {
|
||||||
|
this();
|
||||||
|
this.pacoteId = pacoteId;
|
||||||
|
this.nompacote = nompacote;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Pacote(Integer pacoteId, String nompacote, String descpacote, Boolean indvendaagencia, Boolean activo, Date fecmodif, Integer usuarioId, Ruta ruta) {
|
public Pacote(Integer pacoteId, String nompacote, String descpacote, Boolean indvendaagencia, Boolean activo, Date fecmodif, Integer usuarioId, Ruta ruta) {
|
||||||
|
this();
|
||||||
this.pacoteId = pacoteId;
|
this.pacoteId = pacoteId;
|
||||||
this.nompacote = nompacote;
|
this.nompacote = nompacote;
|
||||||
this.descpacote = descpacote;
|
this.descpacote = descpacote;
|
||||||
|
|
Loading…
Reference in New Issue