Ejemplo n.º 1
0
        /// <summary>
        /// Used to Get object List of specified type
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <returns></returns>
        public IEnumerable <T> GetAll <T>() where T : DBEntityBase
        {
            IEnumerable <T> list = null;

            try
            {
                list = GetAll(GetDataRequest <T> .Default());
            }
            catch { throw; }

            return(list);
        }