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

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

            return(scooterResponse);
        }
Ejemplo n.º 2
0
        public ScooterResponse Rent(int scooterId, string passportNumber)
        {
            var scooter = scooterService.Rent(scooterId, passportNumber);

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

            return(scooterResponse);
        }