/**
* @return
* @throws CreateException
*/
private Visita createVisitaCompleto() throws CreateException {
Visita v = (Visita) pa.create(Visita.class);
Motivo m = new Motivo();
m.setChat(Boolean.TRUE);
v.setMotivo(m);
v.setDataInicio(new Date());
try {
v.setUsuario(UsuarioDataServices.getList().get(0));
v.setTelecentro(TelecentroDataServices.getList().get(0));
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}