public void AddCar(string make, string model, string variant, int horsepower, string color, VehicleType vehicleType, FuelType fueltype, Transmission transmission) { dataRepository.AddCar(new Car(make, model, variant, horsepower, color, vehicleType, fueltype, transmission)); }