Ejemplo n.º 1
0
        public ScooterResponse TurnBack(int scooterId)
        {
            var scooter = scooterService.TurnBack(scooterId);

            var scooterResponse = new ScooterResponse(Convert.ToInt32(scooter.Id));

            return(scooterResponse);
        }