Beispiel #1
0
 public ArrayList FindByAttribute(string field, string value)
 {
     try
     {
         return(baseFacade.FindByAttr(field, value));
     }
     catch (FacadeException e)
     {
         return(new ArrayList());
     }
 }
Beispiel #2
0
 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);
     }
 }