private static void OnBrandBadgesUpdate(object sender, EventArgs e)
 {
     CarBrandsList.ReplaceEverythingBy(FilesStorage.Instance.GetContentFiles(ContentCategory.BrandBadges).Select(x => x.Name));
 }
Exemple #2
0
 public static void RebuildCarBrandsList()
 {
     Logging.Write("RebuildCarBrandsList()");
     CarBrandsList.ReplaceEverythingBy(from c in CarsManager.Instance where c.Enabled select c.Brand);
 }