Exemplo n.º 1
0
        public List <T> GetList()
        {
            var listTemp = dbSet.ToList();

            if (listTemp == null || listTemp.Count == 0)
            {
                return(null);
            }
            else
            {
                return(listTemp);
            }
        }
Exemplo n.º 2
0
 public IList <T> GetList()
 {
     return(dbSet.ToList());
 }