/// <Function> /// /// <MethodName> /// FindAll /// </MethodName> /// <Description> /// Find All Model /// </Description> /// <Inputs> /// </Inputs> /// <Returns> /// List of Model /// </Returns> /// </Function> public ArrayList FindAll() { try { return(baseFacade.FindAll()); } catch (FacadeException fx) { return(new ArrayList()); } }
/// <Function> /// /// <MethodName> /// FindAll /// </MethodName> /// <Description> /// Find All Model /// </Description> /// <Inputs> /// </Inputs> /// <Returns> /// List of Model /// </Returns> /// </Function> public ArrayList FindAll() { try { return(baseFacade.FindAll()); } catch (FacadeException fx) { throw new BOException("Can not find" + fx.Message); } }