public ActionResult <List <Place> > GetAllFreePlace()
 {
     return(Ok(reservationService.FreePlace(new SearchModel {
         TypeCar = 1, TypePlace = 2
     })));
 }