public List<UsuarioSucursal> getListaUsuarioSucursalPkEmpresaUsuarioYFechaEliminacion(
     EmpresaUsuarioId pId, Timestamp pTsFechaEliminacion) throws BusinessException {
   List<UsuarioSucursal> lista = null;
   try {
     HashMap<String, Object> mapa = new HashMap<String, Object>();
     mapa.put("intPersEmpresaPk", pId.getIntPersEmpresaPk());
     mapa.put("intPersPersonaPk", pId.getIntPersPersonaPk());
     mapa.put("tsFechaEliminacion", pTsFechaEliminacion);
     lista = dao.getListaPorPkEmpresaUsuarioYFechaEliminacion(mapa);
   } catch (DAOException e) {
     throw new BusinessException(e);
   } catch (Exception e) {
     throw new BusinessException(e);
   }
   return lista;
 }