Example #1
0
        public async Task <BusStopsBusStopDto> GetBusStopAsync(int id)
        {
            var busStop = await _repository.GetBusStopAsync(id);

            return(_mapper.Map <BusStop, BusStopsBusStopDto>(busStop));
        }