Ejemplo n.º 1
0
        public List <T> GetLookupObjects <T>()
            where T : class, ILookupObject, new()
        {
            var result = new List <T>();

            result = dao.SelectGetLookupObjects <T>(result);
            return(result);
        }