예제 #1
0
        public ScooterResponse Rent(int scooterId, string passportNumber)
        {
            var scooter = scooterService.Rent(scooterId, passportNumber);

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

            return(scooterResponse);
        }