public async Task <ActionResult <IEnumerable <Car> > > GetAllCars()
 {
     return(Ok(await _rentService.GetAllCars()));
 }