public ArrayList FindByExpression(Expression exp) { try { return(baseFacade.FindByExpression(exp)); } catch (FacadeException e) { return(new ArrayList()); } }
public ArrayList FindByExpression(Expression exp) { try { return(baseFacade.FindByExpression(exp)); } catch (FacadeException e) { throw new BOException("Can not execute the FindByExpression method: " + e.Message); } }