Exemple #1
0
 protected Dictionary <string, bool> GetBrandModels(string brand)   // null to grab everything
 {
     if (handSets == null)
     {
         InitializeDataStruct();
     }
     if (brand == null)
     {
         return(handSets.GetAllModels());
     }
     else
     {
         return(handSets.GetAllModelsForBrand(brand));
     }
 }