示例#1
0
 public static DataTable SelectAll()
 {
     try
     {
         return(FamiliaFacade.SelectAll());
     }
     catch (Exception ex)
     {
         //GestorErrores.Execute(ex);
         throw;
     }
 }
示例#2
0
        public static DataTable SelectAll()
        {
            DataTable var;

            try
            {
                var = FamiliaFacade.SelectAll();
            }
            catch (ExceptionBLL bllex)
            {
                throw new ExceptionBLL(bllex, bllex.Message);
            }
            return(var);
        }