예제 #1
0
        protected List <string> GetAllModels()
        {
            Dictionary <string, bool> bagOfAllModels;
            List <string>             returnVal = new List <string>();

            if (handSets == null)
            {
                InitializeDataStruct();
            }
            bagOfAllModels = handSets.GetAllModels();
            foreach (var model in bagOfAllModels.Keys)
            {
                returnVal.Add(model);
            }
            return(returnVal);
        }