public async Task <int> AddCar(string name, string model, int price)
 {
     return(await _carRepository.AddCarAsync(name, model, price));
 }