示例#1
0
 public String aString() {
   return "Idtarfia = "
       + idTarifa
       + " Aeropuerto Origen = "
       + (origen != null ? origen.getNombre() : null)
       + " Aeropuerto Destino = "
       + (destino != null ? destino.getNombre() : null)
       + " Monto = "
       + monto
       + " Moneda = "
       + (moneda != null ? moneda.getValor() : null)
       + " Estado = "
       + (estado != null ? estado.getValor() : null)
       + " Fecha Activacion = "
       + (fechaActivacion != null ? CValidator.formatDate(fechaActivacion) : null)
       + " Fecha Desactivacion = "
       + (fechaDesactivacion != null ? CValidator.formatDate(fechaDesactivacion) : null);
 }