public ArrayList FindByAttribute(string field, string value) { try { return(baseFacade.FindByAttr(field, value)); } catch (FacadeException e) { return(new ArrayList()); } }
public ArrayList FindByAttribute(string field, string value) { try { return(baseFacade.FindByAttr(field, value)); } catch (FacadeException e) { throw new BOException("Can not execute the FindByExpression method: " + e.Message); } }