/// <summary>
 /// Updates the brands with the Brands public variables
 /// Called each time we need to update the brands
 /// </summary>
 private void UpdateBrandsFromThePublicVaribles()
 {
     PublicVariables.Brands = GlobalConfig.Connection.GetBrands();
     Brands = PublicVariables.Brands;
     Brands.RemoveAt(0);
 }