public ActionResult <bool> DeleteRaceVehicle(int id)
 {
     _raceRepository.DeleteVehicle(id);
     return(true);
 }