public void FillVehicleModifications(VehicleBrand vehicleBrand)
 {
     vehicleModifications.Clear();
     foreach (VehicleModification vehicleModification in storeService.VehicleService.GetModifications(vehicleBrand))
     {
         vehicleModifications.Add(vehicleModification);
     }
     VehicleModificationComboboxes.FillVehicleModificationComboboxes(vehicleModifications);
 }