Esempio n. 1
0
        public IEnumerable<Wrapper2> GetContainerLabels(int arlNumber)
        {
            SmartCollection<SampleContainer> results = new SmartCollection<SampleContainer>();

            try
            {
                using (SampleDAO sampleDao = new SampleDAO())
                {
                    results = sampleDao.GetContainerLabels(arlNumber);
                }
                return IndexData(results);
            }
            catch (Exception)
            {
                throw;
            }
        }