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