Ejemplo n.º 1
0
        public void refreshList()
        {
            clearList();

            List <Collector> theCollectors = new List <Collector>();

            theCollectors = serviceLayer.GetCollectors().Skip(offset).Take(limit).ToList();

            foreach (Collector tCollector in theCollectors)
            {
                addToCollectors(tCollector);
            }
        }