mirror of
https://git.imnavajas.es/jjimenez/erp-imprimelibros.git
synced 2026-01-13 00:48:49 +00:00
20 lines
487 B
Java
20 lines
487 B
Java
package com.imprimelibros.erp.direcciones;
|
|
|
|
public interface DireccionView {
|
|
Long getId();
|
|
String getAlias();
|
|
String getAtt();
|
|
String getDireccion();
|
|
String getCp();
|
|
String getCiudad();
|
|
String getProvincia();
|
|
String getPaisCode3();
|
|
String getPaisKeyword();
|
|
String getTelefono();
|
|
Boolean getIsFacturacion();
|
|
String getRazonSocial();
|
|
String getTipoIdentificacionFiscal();
|
|
String getIdentificacionFiscal();
|
|
String getCliente();
|
|
}
|