public UsuarioSucursal modificarUsuarioSucursal(UsuarioSucursal o) throws BusinessException {
   UsuarioSucursal dto = null;
   try {
     dto = dao.modificar(o);
   } catch (DAOException e) {
     throw new BusinessException(e);
   } catch (Exception e) {
     throw new BusinessException(e);
   }
   return dto;
 }