Example #1
0
        public static DataTable SelectAll()
        {
            DataTable varDataTable;

            try
            {
                varDataTable = PatenteDAL.SelectAll();
            }
            catch (ExceptionDAL dalex)
            {
                throw new ExceptionBLL(dalex, dalex.Message);
            }
            return(varDataTable);
        }