public async Task <IEnumerable <CarModel> > GetAllAsync()
        {
            var cars = await _carDataService.GetAllAsync();

            return(_mapper.Map <IEnumerable <CarModel> >(cars));
        }