public async void AddCar(Car car) { var mapper = new CarMapper(); var newCar = mapper.MapToServiceModel(car); await client.AddCarAsync(newCar); }