Exemplo n.º 1
0
        protected TokenCollection LoadListBarCode(int ID)
        {
            TokenCollection listBarCode = new TokenCollection();

            if (ID != null)
            {
                List <hhBarcode> barcode = DBDataProvider.GetDanhSach(ID);
                foreach (var bc in barcode)
                {
                    listBarCode.Add(bc.Barcode);
                }
            }
            return(listBarCode);
        }