public ActionResult DeleteScooter(int scooterId)
 {
     _scooterRepository.DeleteScooter(scooterId);
     return(NoContent());
 }