public static DataTable SelectAll() { try { return(FamiliaFacade.SelectAll()); } catch (Exception ex) { //GestorErrores.Execute(ex); throw; } }
public static DataTable SelectAll() { DataTable var; try { var = FamiliaFacade.SelectAll(); } catch (ExceptionBLL bllex) { throw new ExceptionBLL(bllex, bllex.Message); } return(var); }