Exemplo n.º 1
0
 /// <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());
     }
 }
Exemplo n.º 2
0
 /// <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);
     }
 }